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