OSDN Git Service

2010-05-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr27603.c
1 /* { dg-do run } */
2
3 void exit (int);
4 void abort (void);
5 int a;
6 int main()
7 {
8   int j;
9   for (j = 0; j < 6; j++)
10   {
11     if ((unsigned)j - 3 <= 1)
12       exit (0);
13     a = 1000 * (6 - j);
14   }
15   abort ();
16 }