modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/forgetcc.c (about)

     1  foo (hp, p, a)
     2       short *hp;
     3       int *p;
     4       int a;
     5  {
     6    hp[10] = a;
     7    p[0] = 10;
     8    if (hp[10] > 0)
     9      return 1;
    10    return 0;
    11  }