Commit 8a63cdfc by Jeff Law

New test from Joern.

From-SVN: r19037
parent cc46ae8e
int
f()
{
int j = 1;
long i;
for (i = -0x70000000L; i < 0x60000000L; i += 0x10000000L) j <<= 1;
return j;
}
int
main ()
{
if (f () != 8192)
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