testsuite/116596 - fix gcc.dg/vect/slp-11a.c
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991202-1.c
blob9cbd31f5d4fc8f143586726be5047354dfed2a50
1 void exit (int);
3 int x, y;
5 int
6 main()
8 x = 2;
9 y = x;
12 x = y;
13 y = 2 * y;
15 while ( ! ((y - x) >= 20));
16 exit (0);