aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20160205-1.c
blob: ea0440f460eb79c68d0f0fda3fbb740d424fe826 (plain)
1
2
3
4
5
6
7
8
int a[32];
int fn1(int d) {
  int c = 1;
  for (int b = 0; b < 32; b++)
    if (a[b])
      c = 0;
  return c;
}