2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-4b.c
blobeaf7f30c4c557e0f56b190dd7c17cbaa3714eb0e
1 int
2 f()
4 int j = 1;
5 long i;
6 i = 0x60000000L;
7 do
9 j <<= 1;
10 i += 0x10000000L;
11 } while (i < -0x60000000L);
12 return j;
15 int
16 main ()
18 if (f () != 2)
19 abort ();
20 exit (0);