diff options
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index e7d048f5387..2f859486691 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -724,8 +724,8 @@ minmax_replacement (basic_block cond_bb, basic_block middle_bb, return false; /* We need BOUND <= LARGER. */ - if (!integer_nonzerop (fold (build2 (LE_EXPR, boolean_type_node, - bound, larger)))) + if (!integer_nonzerop (fold_build2 (LE_EXPR, boolean_type_node, + bound, larger))) return false; } else if (operand_equal_for_phi_arg_p (arg_false, smaller)) @@ -749,8 +749,8 @@ minmax_replacement (basic_block cond_bb, basic_block middle_bb, return false; /* We need BOUND >= SMALLER. */ - if (!integer_nonzerop (fold (build2 (GE_EXPR, boolean_type_node, - bound, smaller)))) + if (!integer_nonzerop (fold_build2 (GE_EXPR, boolean_type_node, + bound, smaller))) return false; } else @@ -783,8 +783,8 @@ minmax_replacement (basic_block cond_bb, basic_block middle_bb, return false; /* We need BOUND >= LARGER. */ - if (!integer_nonzerop (fold (build2 (GE_EXPR, boolean_type_node, - bound, larger)))) + if (!integer_nonzerop (fold_build2 (GE_EXPR, boolean_type_node, + bound, larger))) return false; } else if (operand_equal_for_phi_arg_p (arg_true, smaller)) @@ -808,8 +808,8 @@ minmax_replacement (basic_block cond_bb, basic_block middle_bb, return false; /* We need BOUND <= SMALLER. */ - if (!integer_nonzerop (fold (build2 (LE_EXPR, boolean_type_node, - bound, smaller)))) + if (!integer_nonzerop (fold_build2 (LE_EXPR, boolean_type_node, + bound, smaller))) return false; } else |