2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-4.c
blobb308aa27689afe936944a463fd2e15dc67aad654
1 int
2 f()
4 int j = 1;
5 long i;
6 for (i = -0x70000000L; i < 0x60000000L; i += 0x10000000L) j <<= 1;
7 return j;
10 int
11 main ()
13 if (f () != 8192)
14 abort ();
15 exit (0);