This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/25371] -ftree-vectorize results in internal compiler error on AMD64
- From: "rakdver at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 May 2007 09:46:01 -0000
- Subject: [Bug tree-optimization/25371] -ftree-vectorize results in internal compiler error on AMD64
- References: <bug-25371-11859@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #11 from rakdver at gcc dot gnu dot org 2007-05-10 10:46 -------
Simplified testcase:
void
slow_close(int n)
{
int i;
double *mm;
for (i=0;i<2*n;i++)
for (i=0;i<2*n;i++)
*(mm+i*2*n+i) = 0;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25371