From 023c7f6348d8bf96b91bd65e62389b4bc08cc18b Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 3 Sep 1995 09:03:38 -0400 Subject: [PATCH] (size_binop): Don't pass 1 to NOTRUNC. From-SVN: r10306 --- gcc/fold-const.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.7.4