2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991202-1.c
blob502acc74965e67ff6406a8f83ada02b8033aae16
1 int x, y;
3 int
4 main()
6 x = 2;
7 y = x;
8 do
10 x = y;
11 y = 2 * y;
13 while ( ! ((y - x) >= 20));
14 exit (0);