modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20160205-1.c (about)

     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  }