[Bug tree-optimization/30564] [4.3 Regression] ice for legal code with -O3
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sun Aug 19 19:07:00 GMT 2007
------- Comment #14 from pinskia at gcc dot gnu dot org 2007-08-19 19:07 -------
The testcases here don't crash anymore but the one from PR 32033 does:
static int spready[] = {
};
void explosion_map (int y)
{
for (int i = 0; i < 4; i++)
if (y * spready[i] < 0)
break;
}
void explosion (void)
{
explosion_map (0);
for (int i = 0; i < 2; i++)
continue;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30564
More information about the Gcc-bugs
mailing list