From 49d00087091a73bd5ed4e29ea8afd093cac6c58f Mon Sep 17 00:00:00 2001 From: kazu Date: Sun, 26 Jun 2005 21:21:34 +0000 Subject: * 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 (...)). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101338 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-cfg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/tree-cfg.c') diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index ba40328542f..42dabb9a83e 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -4965,7 +4965,7 @@ gimplify_build3 (block_stmt_iterator *bsi, enum tree_code code, { tree ret; - ret = fold (build3 (code, type, a, b, c)); + ret = fold_build3 (code, type, a, b, c); STRIP_NOPS (ret); return gimplify_val (bsi, type, ret); @@ -4980,7 +4980,7 @@ gimplify_build2 (block_stmt_iterator *bsi, enum tree_code code, { tree ret; - ret = fold (build2 (code, type, a, b)); + ret = fold_build2 (code, type, a, b); STRIP_NOPS (ret); return gimplify_val (bsi, type, ret); @@ -4995,7 +4995,7 @@ gimplify_build1 (block_stmt_iterator *bsi, enum tree_code code, tree type, { tree ret; - ret = fold (build1 (code, type, a)); + ret = fold_build1 (code, type, a); STRIP_NOPS (ret); return gimplify_val (bsi, type, ret); -- cgit v1.2.1