This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/34215] [4.2 Regression] ICE in assign_386_stack_local, at config/i386/i386.c:13481
- From: "tbm at cyrius dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Nov 2007 15:26:59 -0000
- Subject: [Bug target/34215] [4.2 Regression] ICE in assign_386_stack_local, at config/i386/i386.c:13481
- References: <bug-34215-12387@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from tbm at cyrius dot com 2007-11-24 15:26 -------
The reduced testcase only shows the problem with 4.2:
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
void calc_score_dist (int mxdlen, long double d, long double **dist)
{
unsigned long i, scr2;
for (i = 1; i <= mxdlen; i++)
{
for (scr2 = mxdlen; scr2 <= mxdlen + 10; scr2++)
{
}
dist[i][scr2] *= pow(1.0 / d, i);
}
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34215