Commit 580ceef2 by Richard Kenner

(const_binop): Don't call size_int if low < 0.

From-SVN: r13617
parent 88029ff8
......@@ -1212,7 +1212,7 @@ const_binop (code, arg1, arg2, notrunc)
}
got_it:
if (TREE_TYPE (arg1) == sizetype && hi == 0
&& low <= TREE_INT_CST_LOW (TYPE_MAX_VALUE (sizetype))
&& low >= 0 && low <= TREE_INT_CST_LOW (TYPE_MAX_VALUE (sizetype))
&& ! overflow
&& ! TREE_OVERFLOW (arg1) && ! TREE_OVERFLOW (arg2))
t = size_int (low);
......
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