Commit 773105be by Richard Henderson

New test.

From-SVN: r47368
parent 468e8dba
/* Produced a overflow in ifcvt.c, causing S to contain 0xffffffff7fffffff. */
int a = 1;
int main ()
{
long long s;
s = a;
if (s < 0)
s = -2147483648LL;
else
s = 2147483647LL;
if (s < 0)
abort ();
return 0;
}
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