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

Reply via email to