diff options
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/aarch64/aarch64-builtins.c | 4 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 18 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 14 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 4 |
4 files changed, 20 insertions, 20 deletions
diff --git a/gcc/config/aarch64/aarch64-builtins.c b/gcc/config/aarch64/aarch64-builtins.c index c86f47d374f..4ed2a8b6cb0 100644 --- a/gcc/config/aarch64/aarch64-builtins.c +++ b/gcc/config/aarch64/aarch64-builtins.c @@ -1371,10 +1371,10 @@ bool aarch64_gimple_fold_builtin (gimple_stmt_iterator *gsi) { bool changed = false; - gimple stmt = gsi_stmt (*gsi); + gimple *stmt = gsi_stmt (*gsi); tree call = gimple_call_fn (stmt); tree fndecl; - gimple new_stmt = NULL; + gimple *new_stmt = NULL; if (call) { diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index cae819fa782..eb2ae5f45ee 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -5850,10 +5850,10 @@ alpha_build_builtin_va_list (void) /* Helper function for alpha_stdarg_optimize_hook. Skip over casts and constant additions. */ -static gimple +static gimple * va_list_skip_additions (tree lhs) { - gimple stmt; + gimple *stmt; for (;;) { @@ -5900,11 +5900,11 @@ va_list_skip_additions (tree lhs) current statement. */ static bool -alpha_stdarg_optimize_hook (struct stdarg_info *si, const_gimple stmt) +alpha_stdarg_optimize_hook (struct stdarg_info *si, const gimple *stmt) { tree base, offset, rhs; int offset_arg = 1; - gimple base_stmt; + gimple *base_stmt; if (get_gimple_rhs_class (gimple_assign_rhs_code (stmt)) != GIMPLE_SINGLE_RHS) @@ -5961,13 +5961,13 @@ alpha_stdarg_optimize_hook (struct stdarg_info *si, const_gimple stmt) offset = gimple_op (stmt, 1 + offset_arg); if (TREE_CODE (offset) == SSA_NAME) { - gimple offset_stmt = va_list_skip_additions (offset); + gimple *offset_stmt = va_list_skip_additions (offset); if (offset_stmt && gimple_code (offset_stmt) == GIMPLE_PHI) { HOST_WIDE_INT sub; - gimple arg1_stmt, arg2_stmt; + gimple *arg1_stmt, *arg2_stmt; tree arg1, arg2; enum tree_code code1, code2; @@ -5992,7 +5992,7 @@ alpha_stdarg_optimize_hook (struct stdarg_info *si, const_gimple stmt) else if (code2 == COMPONENT_REF && (code1 == MINUS_EXPR || code1 == PLUS_EXPR)) { - gimple tem = arg1_stmt; + gimple *tem = arg1_stmt; code2 = code1; arg1_stmt = arg2_stmt; arg2_stmt = tem; @@ -7088,9 +7088,9 @@ bool alpha_gimple_fold_builtin (gimple_stmt_iterator *gsi) { bool changed = false; - gimple stmt = gsi_stmt (*gsi); + gimple *stmt = gsi_stmt (*gsi); tree call = gimple_call_fn (stmt); - gimple new_stmt = NULL; + gimple *new_stmt = NULL; if (call) { diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 00e7006ec9a..d547cfd108a 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -34456,11 +34456,11 @@ static basic_block add_condition_to_bb (tree function_decl, tree version_decl, tree predicate_chain, basic_block new_bb) { - gimple return_stmt; + gimple *return_stmt; tree convert_expr, result_var; - gimple convert_stmt; - gimple call_cond_stmt; - gimple if_else_stmt; + gimple *convert_stmt; + gimple *call_cond_stmt; + gimple *if_else_stmt; basic_block bb1, bb2, bb3; edge e12, e23; @@ -34511,7 +34511,7 @@ add_condition_to_bb (tree function_decl, tree version_decl, and_expr_var = cond_var; else { - gimple assign_stmt; + gimple *assign_stmt; /* Use MIN_EXPR to check if any integer is zero?. and_expr_var = min_expr <cond_var, and_expr_var> */ assign_stmt = gimple_build_assign (and_expr_var, @@ -34878,7 +34878,7 @@ dispatch_function_versions (tree dispatch_decl, basic_block *empty_bb) { tree default_decl; - gimple ifunc_cpu_init_stmt; + gimple *ifunc_cpu_init_stmt; gimple_seq gseq; int ix; tree ele; @@ -40074,7 +40074,7 @@ rdseed_step: as that is a cheaper way to load all ones into a register than having to load a constant from memory. */ - gimple def_stmt = SSA_NAME_DEF_STMT (arg3); + gimple *def_stmt = SSA_NAME_DEF_STMT (arg3); if (is_gimple_call (def_stmt)) { tree fndecl = gimple_call_fndecl (def_stmt); diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 8a22af62962..5897ea82b8a 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -4676,7 +4676,7 @@ rs6000_density_test (rs6000_cost_data *data) for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi)) { - gimple stmt = gsi_stmt (gsi); + gimple *stmt = gsi_stmt (gsi); stmt_vec_info stmt_info = vinfo_for_stmt (stmt); if (!STMT_VINFO_RELEVANT_P (stmt_info) @@ -11480,7 +11480,7 @@ rs6000_gimplify_va_arg (tree valist, tree type, gimple_seq *pre_p, int align; tree ptrtype = build_pointer_type_for_mode (type, ptr_mode, true); int regalign = 0; - gimple stmt; + gimple *stmt; if (pass_by_reference (NULL, TYPE_MODE (type), type, false)) { |