diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-02 14:40:40 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-02 14:40:40 +0000 |
commit | 5a12b939d93e4d23895baef59dabe9930afbab2f (patch) | |
tree | 91c46da23139dff93fd79a1086c7f732c02caccb /gcc/tree-ssa-forwprop.c | |
parent | cca0fae1fd1287393b766628f070ba6fee7190ec (diff) | |
download | gcc-5a12b939d93e4d23895baef59dabe9930afbab2f.tar.gz |
2005-12-02 Richard Guenther <rguenther@suse.de>
* tree-vrp.c (build_assert_expr_for, process_assert_insertions_for,
simplify_cond_using_ranges): Use buildN instead of build.
* tree-tailcall.c (adjust_accumulator_values,
adjust_return_value): Likewise.
* tree-sra.c (generate_one_element_ref, generate_copy_inout,
generate_element_copy, generate_element_zero,
generate_one_element_init): Likewise.
* tree-ssa-forwprop.c (forward_propagate_into_cond_1): Likewise.
* lambda-code.c (gcc_loop_to_lambda_loop, lbv_to_gcc_expression,
lle_to_gcc_expression, lambda_loopnest_to_gcc_loopnest,
perfect_nestify): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107894 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-forwprop.c')
-rw-r--r-- | gcc/tree-ssa-forwprop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-forwprop.c b/gcc/tree-ssa-forwprop.c index 8618ce745e3..a5023ed810c 100644 --- a/gcc/tree-ssa-forwprop.c +++ b/gcc/tree-ssa-forwprop.c @@ -244,7 +244,7 @@ forward_propagate_into_cond_1 (tree cond, tree *test_var_p) if (!is_gimple_val (t)) return NULL_TREE; - new_cond = build (cond_code, boolean_type_node, op0, t); + new_cond = build2 (cond_code, boolean_type_node, op0, t); } } @@ -285,8 +285,8 @@ forward_propagate_into_cond_1 (tree cond, tree *test_var_p) if (has_single_use (test_var)) { /* TEST_VAR was set from a relational operator. */ - new_cond = build (TREE_CODE (def_rhs), - boolean_type_node, op0, op1); + new_cond = build2 (TREE_CODE (def_rhs), + boolean_type_node, op0, op1); /* Invert the conditional if necessary. */ if ((cond_code == EQ_EXPR |