]> git.wh0rd.org - ICEs.git/blob - PR28045/test.c
c3b6e43a73ff480b06e1b9c9f4a998cc5f5c60f6
[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