Commit 81737468 by Olga Golovanevsky

fix for PR31617

From-SVN: r124109
parent 9905fb5e
2007-04-24 Richard Guenther <rguenther@suse.de>
Olga Golovanevsky <olga@il.ibm.com>
* fold-const.c (multiple_of_p): Check for bottom
to be zero.
2007-04-24 Richard Henderson <rth@redhat.com>
* libgcc2.h (AVOID_FP_TYPE_CONVERSION): Rename from
......
......@@ -13216,6 +13216,7 @@ multiple_of_p (tree type, tree top, tree bottom)
case INTEGER_CST:
if (TREE_CODE (bottom) != INTEGER_CST
|| integer_zerop (bottom)
|| (TYPE_UNSIGNED (type)
&& (tree_int_cst_sgn (top) < 0
|| tree_int_cst_sgn (bottom) < 0)))
......
2007-04-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
Olga Golovanevsky <olga@il.ibm.com>
* g++.dg/other/str_empty.C: New test.
2007-04-24 Richard Henderson <rth@redhat.com>
* gcc.dg/vect/vect.exp: Don't run tests on Alpha.
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