[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-07-11 Thread paolo at gcc dot gnu dot org
--- Comment #7 from paolo at gcc dot gnu dot org 2007-07-11 21:52 --- Subject: Bug 31027 Author: paolo Date: Wed Jul 11 21:52:04 2007 New Revision: 126558 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=126558 Log: 2007-07-11 Paolo Carlini [EMAIL PROTECTED] PR c++/31027

[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-07-11 Thread paolo at gcc dot gnu dot org
--- Comment #8 from paolo at gcc dot gnu dot org 2007-07-11 21:54 --- Subject: Bug 31027 Author: paolo Date: Wed Jul 11 21:54:36 2007 New Revision: 126559 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=126559 Log: 2007-07-11 Paolo Carlini [EMAIL PROTECTED] PR c++/31027

[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-07-03 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31027

[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-06-30 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31027

[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-04-13 Thread v dot lesk at ic dot ac dot uk
--- Comment #6 from v dot lesk at ic dot ac dot uk 2007-04-13 16:51 --- I have verified that this bug also occurs on g++ 4.0.3. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31027

[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-03-09 Thread v dot lesk at ic dot ac dot uk
--- Comment #5 from v dot lesk at ic dot ac dot uk 2007-03-09 11:28 --- Can anyone suggest a workaround? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31027

[Bug c++/31027] [4.1/4.2/4.3 regression] Compiler segfaults in simple virtual inheritance situation

2007-03-08 Thread bangerth at dealii dot org
--- Comment #4 from bangerth at dealii dot org 2007-03-09 04:54 --- Confirmed. This is a regression introduced in 4.0.x. Somewhat shorter: struct A {}; templatetypename T struct C: virtual A { C() {}; templatetypename T_OTHER C(const CT_OTHER) {}; C