modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/991214-1.c (about) 1 void foo(double bar[], double *zp, int n) 2 { 3 int i, j; 4 5 i = 0; 6 for(j = 0; j < n; j++) 7 { 8 i += j+1; 9 bar[i] *= (1.0 + *zp); 10 } 11 }