diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2005-06-26 21:21:34 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-06-26 21:21:34 +0000 |
commit | 987b67bc5502c1c826bcb6c6b41728d6e038c96f (patch) | |
tree | 2b44df571f1322c6e8919fb2cb0153a1b07bc292 /gcc/tree-ssa-loop-manip.c | |
parent | d967c45e83d3d79e100f88a5ed26c63c33e91754 (diff) | |
download | gcc-987b67bc5502c1c826bcb6c6b41728d6e038c96f.zip gcc-987b67bc5502c1c826bcb6c6b41728d6e038c96f.tar.gz gcc-987b67bc5502c1c826bcb6c6b41728d6e038c96f.tar.bz2 |
builtins.c, [...]: Use fold_buildN instead of fold (buildN (...)).
* builtins.c, c-common.c, c-convert.c, c-decl.c, c-typeck.c,
convert.c, lambda-code.c, predict.c, tree-cfg.c,
tree-complex.c, tree-data-ref.c, tree-if-conv.c,
tree-mudflap.c, tree-scalar-evolution.c, tree-ssa-ccp.c,
tree-ssa-loop-ivcanon.c, tree-ssa-loop-ivopts.c,
tree-ssa-loop-manip.c, tree-ssa-phiopt.c, tree-ssa-pre.c,
tree-vect-analyze.c, tree-vect-transform.c, tree-vectorizer.c,
tree.c: Use fold_buildN instead of fold (buildN (...)).
From-SVN: r101338
Diffstat (limited to 'gcc/tree-ssa-loop-manip.c')
-rw-r--r-- | gcc/tree-ssa-loop-manip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index bbee7e6..cbd03b7 100644 --- a/gcc/tree-ssa-loop-manip.c +++ b/gcc/tree-ssa-loop-manip.c @@ -75,7 +75,7 @@ create_iv (tree base, tree step, tree var, struct loop *loop, { if (TYPE_UNSIGNED (TREE_TYPE (step))) { - step1 = fold (build1 (NEGATE_EXPR, TREE_TYPE (step), step)); + step1 = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step); if (tree_int_cst_lt (step1, step)) { incr_op = MINUS_EXPR; @@ -88,7 +88,7 @@ create_iv (tree base, tree step, tree var, struct loop *loop, && may_negate_without_overflow_p (step)) { incr_op = MINUS_EXPR; - step = fold (build1 (NEGATE_EXPR, TREE_TYPE (step), step)); + step = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step); } } } |