diff options
author | Roger Sayle <roger@eyesopen.com> | 2007-03-08 19:02:51 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2007-03-08 19:02:51 +0000 |
commit | ebb07520cddaa13da40dbd6775c5ff3f1b22494c (patch) | |
tree | 3617ec1a2bb412824e9bea9c93c38f76d7505941 /gcc/tree-inline.c | |
parent | 0c948c27462a668b4e01f7841c0cca812fbbdd8c (diff) | |
download | gcc-ebb07520cddaa13da40dbd6775c5ff3f1b22494c.zip gcc-ebb07520cddaa13da40dbd6775c5ff3f1b22494c.tar.gz gcc-ebb07520cddaa13da40dbd6775c5ff3f1b22494c.tar.bz2 |
tree-eh.c (do_return_redirection): Call build_gimple_modify_stmt instead of calling build2 with a GIMPLE_MODIFY_STMT.
* tree-eh.c (do_return_redirection): Call build_gimple_modify_stmt
instead of calling build2 with a GIMPLE_MODIFY_STMT.
(honor_protect_cleanup_actions, lower_try_finally_switch):
Likewise.
* tree-if-conv.c (replace_phi_with_cond_gimple_modify_stmt,
ifc_temp_var): Likewise.
* tree-inline.c (setup_one_parameter): Likewise.
* tree-mudflap.c (mf_decl_cache_locals,
mf_build_check_statement_for): Likewise.
* tree-nested.c (init_tmp_var, save_tmp_var,
finalize_nesting_tree_1): Likewise.
* tree-outof-ssa.c (insert_copy_on_edge,
insert_backedge_copies): Likewise.
* tree-profile.c (tree_gen_edge_profiler,
tree_gen_ic_profiler): Likewise.
* tree-scalar-evolution.c (scev_const_prop): Likewise.
* tree-sra.c (sra_build_assignment): Likewise.
* tree-ssa-loop-im.c (determine_invariantness_stmt): Likewise.
* tree-ssa-math-opts.c (insert_reciprocals,
execute_cse_sincos_1): Likewise.
* tree-tailcall.c (adjust_accumulator_values,
adjust_return_value): Likewise.
* tree-vect-patterns.c (vect_pattern_recog_1): Likewise.
* tree-vect-transform.c (vect_create_data_ref_ptr,
bump_vector_ptr, vect_init_vector, get_initial_def_for_induction,
vect_create_epilog_for_reduction, vectorizable_reduction,
vectorizable_call, vectorizable_conversion,
vectorizable_assignment, vectorizable_operation,
vectorizable_type_demotion, vect_gen_widened_results_half,
vect_permute_store_chain, vectorizable_store,
vect_setup_realignment, vect_permute_load_chain,
vectorizable_load, vectorizable_condition,
vect_create_cond_for_align_checks): Likewise.
* tree-vrp.c (build_assert_expr_for): Likewise.
From-SVN: r122707
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 349d109..966da84 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1,5 +1,6 @@ /* Tree inlining. - Copyright 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007 + Free Software Foundation, Inc. Contributed by Alexandre Oliva <aoliva@redhat.com> This file is part of GCC. @@ -1399,13 +1400,13 @@ setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn, if (def && gimple_in_ssa_p (cfun) && is_gimple_reg (p)) { def = remap_ssa_name (def, id); - init_stmt = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (var), def, rhs); + init_stmt = build_gimple_modify_stmt (def, rhs); SSA_NAME_DEF_STMT (def) = init_stmt; SSA_NAME_IS_DEFAULT_DEF (def) = 0; set_default_def (var, NULL); } else - init_stmt = build2 (GIMPLE_MODIFY_STMT, TREE_TYPE (var), var, rhs); + init_stmt = build_gimple_modify_stmt (var, rhs); /* If we did not create a gimple value and we did not create a gimple cast of a gimple value, then we will need to gimplify INIT_STMTS |