+2015-04-30 David Malcolm <dmalcolm@redhat.com>
+
+ * builtins.c (fold_builtin_1): Remove spurious second
+ semicolon.
+ * cgraph.h (symtab_node::get_availability): Likewise.
+ * opts.c (common_handle_option): Remove spurious second semicolon.
+ * tree-ssa-loop-ivopts.c (extract_cond_operands): Likewise.
+ * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Likewise.
+
2015-04-30 Caroline Tice <cmtice@google.com>
PR 65929
CASE_FLT_FN (BUILT_IN_CREAL):
if (validate_arg (arg0, COMPLEX_TYPE)
&& TREE_CODE (TREE_TYPE (TREE_TYPE (arg0))) == REAL_TYPE)
- return non_lvalue_loc (loc, fold_build1_loc (loc, REALPART_EXPR, type, arg0));;
+ return non_lvalue_loc (loc, fold_build1_loc (loc, REALPART_EXPR, type, arg0));
break;
CASE_FLT_FN (BUILT_IN_CIMAG):
if (is_a <cgraph_node *> (this))
return dyn_cast <cgraph_node *> (this)->get_availability ();
else
- return dyn_cast <varpool_node *> (this)->get_availability ();;
+ return dyn_cast <varpool_node *> (this)->get_availability ();
}
/* Call calback on symtab node and aliases associated to this node.
+2015-04-30 David Malcolm <dmalcolm@redhat.com>
+
+ * cp-tree.h (ARGUMENT_PACK_SELECT_ARG): Remove spurious
+ trailing semicolon.
+
2015-04-29 Jason Merrill <jason@redhat.com>
PR c++/50800
ARGUMENT_PACK_SELECT represents. */
#define ARGUMENT_PACK_SELECT_ARG(NODE) \
TREE_VEC_ELT (ARGUMENT_PACK_ARGS (ARGUMENT_PACK_SELECT_FROM_PACK (NODE)), \
- ARGUMENT_PACK_SELECT_INDEX (NODE));
+ ARGUMENT_PACK_SELECT_INDEX (NODE))
/* In a FUNCTION_DECL, the saved language-specific per-function data. */
#define DECL_SAVED_FUNCTION_DATA(NODE) \
+2015-04-30 David Malcolm <dmalcolm@redhat.com>
+
+ * options.c (gfc_init_options): Remove spurious second
+ semicolon.
+ * trans-stmt.c (gfc_trans_allocate): Likewise.
+
2015-04-28 Andre Vehreschild <vehre@gmx.de>
* interface.c (gfc_compare_types): Check for unlimited
enabled by default in Fortran. Ideally, we should express this
in .opt, but that is not supported yet. */
if (!global_options_set.x_cpp_warn_missing_include_dirs)
- global_options.x_cpp_warn_missing_include_dirs = 1;;
+ global_options.x_cpp_warn_missing_include_dirs = 1;
set_default_std_flags ();
memsz = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&code->ext.alloc.ts));
else
/* Handle size computation of the type declared to alloc. */
- memsz = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (se.expr)));;
+ memsz = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (se.expr)));
/* Allocate - for non-pointers with re-alloc checking. */
if (gfc_expr_attr (expr).allocatable)
unsigned int i;
if (lang_mask == CL_DRIVER)
- break;;
+ break;
undoc_mask = ((opts->x_verbose_flag | opts->x_extra_warnings)
? 0
end:
if (control_var)
- *control_var = op0;;
+ *control_var = op0;
if (iv_var)
- *iv_var = iv0;;
+ *iv_var = iv0;
if (bound)
*bound = op1;
if (iv_bound)
cst = -cst;
/* Avoid CST == 0x80000... */
if (wi::neg_p (cst))
- return max;;
+ return max;
/* OP0 + CST. We need to check that
BND <= MAX (type) - CST. */