rt_gccstream/gcc/testsuite/gcc.c-torture/compile/991214-1.c

12 lines
151 B
C

void foo(double bar[], double *zp, int n)
{
int i, j;
i = 0;
for(j = 0; j < n; j++)
{
i += j+1;
bar[i] *= (1.0 + *zp);
}
}