diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-27 16:02:43 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-27 16:02:43 +0000 |
commit | faa43f858f0b4ef39a540323bb4a1ef3b7359e58 (patch) | |
tree | cb76f3875be6539713ada23941496242dccb3731 /gcc/emit-rtl.c | |
parent | 9ecc2f8556e47a49ed07829b5c15c5c897b1a1a9 (diff) | |
download | gcc-faa43f858f0b4ef39a540323bb4a1ef3b7359e58.tar.gz |
* dojump.c: Fix comment typos. emit-rtl.c, expmed.c, expr.c,
stmt.c, stor-layout.c: Use fold_buildN instead of
fold (buildN (...)).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98848 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 04107970f64..3ed2321450f 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1579,8 +1579,8 @@ set_mem_attributes_minus_bitpos (rtx ref, tree t, int objectp, index, then convert to sizetype and multiply by the size of the array element. */ if (! integer_zerop (low_bound)) - index = fold (build2 (MINUS_EXPR, TREE_TYPE (index), - index, low_bound)); + index = fold_build2 (MINUS_EXPR, TREE_TYPE (index), + index, low_bound); off_tree = size_binop (PLUS_EXPR, size_binop (MULT_EXPR, convert (sizetype, |