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 optimization/15385] [3.5 regression] ICE in spill_failure


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


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