[Bug tree-optimization/26821] [4.1/4.2 Regression] ice in varasm.c with certain flags

pinskia at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Thu Mar 23 06:51:00 GMT 2006



------- 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



More information about the Gcc-bugs mailing list