diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-09-03 09:03:38 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-09-03 09:03:38 -0400 |
commit | 023c7f6348d8bf96b91bd65e62389b4bc08cc18b (patch) | |
tree | dc9a7c6553925130307c9ff8f513cc5140528ff1 /gcc/fold-const.c | |
parent | 536bfcd040dc8e3976f0bc1386074fff133f3386 (diff) | |
download | gcc-023c7f6348d8bf96b91bd65e62389b4bc08cc18b.zip gcc-023c7f6348d8bf96b91bd65e62389b4bc08cc18b.tar.gz gcc-023c7f6348d8bf96b91bd65e62389b4bc08cc18b.tar.bz2 |
(size_binop): Don't pass 1 to NOTRUNC.
From-SVN: r10306
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 8c35dc4..6e83e7a 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1357,7 +1357,7 @@ size_binop (code, arg0, arg1) && TREE_INT_CST_HIGH (arg0) == 0) return arg1; /* Handle general case of two integer constants. */ - return const_binop (code, arg0, arg1, 1); + return const_binop (code, arg0, arg1, 0); } if (arg0 == error_mark_node || arg1 == error_mark_node) |