2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr27603.c
blob8cb0235abe418b730ead631ee5b19a06deb950dd
1 /* { dg-do run } */
3 void exit (int);
4 void abort (void);
5 int a;
6 int main()
8 int j;
9 for (j = 0; j < 6; j++)
11 if ((unsigned)j - 3 <= 1)
12 exit (0);
13 a = 1000 * (6 - j);
15 abort ();