OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 990625-2.c
1 void
2 broken030599(int *n)
3 {
4   int i, x;
5   for (i = 0; i < 32; i++) {
6     x=0;
7     x++;
8     if (i & 4)
9       x++;
10     x++;
11   }
12 }