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/48600] [4.6/4.7 Regression] ICE when using cold attribute


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48600

--- Comment #12 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-12-09 09:11:19 UTC ---
Testcase from PR51460

class mx {
public:
    mx();
};

int main()
{
  while (true) {
      mx *bar = new mx;
      mx *baz = new mx;
      continue;
  }
  return 0;
}

Honza, please work on your bugs!


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