[Bug ipa/59775] [4.9 Regression] internal compiler error: Segmentation fault

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Sun Jan 12 19:44:00 GMT 2014


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
I've reduced it to:
struct A
{
  virtual void foo () = 0;
  void bar () { foo (); }
  bool a;
};
struct B : public virtual A
{
  virtual void foo ();
};
struct C : public B
{
  C ();
};
void
baz ()
{
  C c;
  c.bar ();
}



More information about the Gcc-bugs mailing list