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

     1  typedef float real;
     2  typedef real rvec[3];
     3  void calc_dx2dx(real *, real *);
     4  void phi_sr(int nj,rvec x[],int k)
     5  {
     6    int i,j;
     7    for(i=0; (i<nj-1); i++)
     8      for(j=i+1; (j<nj); j++)
     9        if (k)
    10  	calc_dx2dx(x[i],x[j]);
    11  }