Fix spurious semicolons

gcc/ChangeLog:
	* 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.

gcc/cp/ChangeLog:
	* cp-tree.h (ARGUMENT_PACK_SELECT_ARG): Remove spurious
	trailing semicolon.

gcc/fortran/ChangeLog:
	* options.c (gfc_init_options): Remove spurious second
	semicolon.
	* trans-stmt.c (gfc_trans_allocate): Likewise.

From-SVN: r222658
This commit is contained in:
David Malcolm 2015-04-30 21:07:45 +00:00 committed by David Malcolm
parent 4f576c83fb
commit 6f3d1a5e66
11 changed files with 29 additions and 9 deletions

View File

@ -1,3 +1,12 @@
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

View File

@ -9964,7 +9964,7 @@ fold_builtin_1 (location_t loc, tree fndecl, tree arg0)
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):

View File

@ -2992,7 +2992,7 @@ symtab_node::get_availability (void)
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.

View File

@ -1,3 +1,8 @@
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

View File

@ -3073,7 +3073,7 @@ extern void decl_shadowed_for_var_insert (tree, tree);
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) \

View File

@ -1,3 +1,9 @@
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

View File

@ -115,7 +115,7 @@ gfc_init_options (unsigned int decoded_options_count,
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 ();

View File

@ -5504,7 +5504,7 @@ gfc_trans_allocate (gfc_code * code)
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)

View File

@ -1386,7 +1386,7 @@ common_handle_option (struct gcc_options *opts,
unsigned int i;
if (lang_mask == CL_DRIVER)
break;;
break;
undoc_mask = ((opts->x_verbose_flag | opts->x_extra_warnings)
? 0

View File

@ -1481,9 +1481,9 @@ extract_cond_operands (struct ivopts_data *data, gimple stmt,
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)

View File

@ -2565,7 +2565,7 @@ derive_constant_upper_bound_ops (tree type, tree op0,
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. */