URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr39636.c] - Rev 302
Go to most recent revision | Compare with Previous | Blame | View Log
typedef float real; typedef real rvec[3]; void calc_dx2dx(real *, real *); void phi_sr(int nj,rvec x[],int k) { int i,j; for(i=0; (i<nj-1); i++) for(j=i+1; (j<nj); j++) if (k) calc_dx2dx(x[i],x[j]); }
Go to most recent revision | Compare with Previous | Blame | View Log