]> git.wh0rd.org - ICEs.git/blob - PR28045/test.c
more
[ICEs.git] / PR28045 / test.c
1 void abort (void);
2 int a;
3 int main()
4 {
5 int j;
6 for (j = 0; j < 6; j++)
7 {
8 if ((unsigned)j - 3 <= 1)
9 exit (0);
10 a = 1000 * (6 - j);
11 }
12 abort ();
13 }
14