This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]