This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug optimization/15385] [3.5 regression] ICE in spill_failure
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 May 2004 20:32:22 -0000
- Subject: [Bug optimization/15385] [3.5 regression] ICE in spill_failure
- References: <20040511202027.15385.bangerth@dealii.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-05-11 20:32 -------
Here is a better example which does not use an uninitailized variable and still ICEs:
int foo();
void bar (double d) {
int n = foo();
if (d==0)
for (int i=0; i<n; ++i)
;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15385