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 middle-end/32033] [4.3 Regression] ICE in fold_comparison, at fold-const.c:8531 at -O3



------- Comment #1 from tbm at cyrius dot com  2007-05-22 11:11 -------
Reduced testcase:

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


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