Commit 023c7f63 by Richard Kenner

(size_binop): Don't pass 1 to NOTRUNC.

From-SVN: r10306
parent 536bfcd0
...@@ -1357,7 +1357,7 @@ size_binop (code, arg0, arg1) ...@@ -1357,7 +1357,7 @@ size_binop (code, arg0, arg1)
&& TREE_INT_CST_HIGH (arg0) == 0) && TREE_INT_CST_HIGH (arg0) == 0)
return arg1; return arg1;
/* Handle general case of two integer constants. */ /* 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) if (arg0 == error_mark_node || arg1 == error_mark_node)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment