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/32826] Reduction into a global variable causes a Load Hit Store Hazard (for the Cell)



------- Comment #1 from pinskia at gcc dot gnu dot org  2007-07-19 17:15 -------
Note I copied the wrong testcase, the correct testcase is:
int a[16*100];
int e;
float f(void)
{
  int i;
  int e1;
  e1 = 0;
  for(i = 0;i<16*100;i++)
    e1 += a[i];
  e = e1;
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32826


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