Bug 11955 - Internal compiler error in reload, at reload1.c:1112
Summary: Internal compiler error in reload, at reload1.c:1112
Status: RESOLVED FIXED
Alias: None
Product: gcc
Classification: Unclassified
Component: c (show other bugs)
Version: 3.2.3
: P2 critical
Target Milestone: 3.3
Assignee: Not yet assigned to anyone
URL:
Keywords: ice-on-valid-code
Depends on:
Blocks:
 
Reported: 2003-08-17 05:01 UTC by Anton Likhtarov
Modified: 2005-07-23 22:49 UTC (History)
1 user (show)

See Also:
Host: i686-pc-linux-gnu
Target: i686-pc-linux-gnu
Build: i686-pc-linux-gnu
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Anton Likhtarov 2003-08-17 05:01:22 UTC
Compiler crushes when trying to compile following program:

/*BEGIN*/

int main(int argc, char**argv)
{
  union {
    long long int a;
    double b;
  } c;
  c.b=0;
  for(;;) {
    c.b++;
    if(!c.a) break;
  }
  return 0;
}

/* END */

Compile options are "-O3 -march=pentium4"
Comment 1 Andrew Pinski 2003-08-17 05:04:12 UTC
I can confirm this in 3.2.3 but it is already fixed in 3.3.1 so closing as fixed.