aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/990625-2.c
blob: 92c33742b854918d1ffb56078490d53528cf4974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void
broken030599(int *n)
{
  int i, x;
  for (i = 0; i < 32; i++) {
    x=0;
    x++;
    if (i & 4)
      x++;
    x++;
  }
}