------- Comment #3 from pinskia at gcc dot gnu dot org 2006-03-23 06:51 ------- And here is the C example: void f(double *__restrict__ qa, double *__restrict__ qb, double *__restrict__ qc, double *__restrict__ rtrms) { int i; static double qam[6000]; static double qbm[6000]; static double qcm[6000]; for(i=0;i<6000;i++) { double a = rtrms[i]; qam[i] = qa[i]/a; qbm[i] = qb[i]/a; qcm[i] = qc[i]/a; } }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26821