8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/loop-4.c
Jeff Law 4a00b81561 Change from tege.
From-SVN: r19041
1998-04-08 05:39:39 -06:00

17 lines
179 B
C

int
f()
{
int j = 1;
long i;
for (i = -0x70000000L; i < 0x60000000L; i += 0x10000000L) j <<= 1;
return j;
}
int
main ()
{
if (f () != 8192)
abort ();
exit (0);
}