public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class
@ 2011-12-18 22:18 reichelt at gcc dot gnu.org
  2011-12-18 22:22 ` [Bug c++/51614] " reichelt at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: reichelt at gcc dot gnu.org @ 2011-12-18 22:18 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 51614
           Summary: [4.6/4.7 Regression] ICE with ambiguous base class
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: reichelt@gcc.gnu.org


The following invalid code snippet triggers an ICE since GCC 4.6.0:

======================
struct A
{
  void foo();
};

struct B : A {};
struct C : A {};

struct D : B, C
{
  D() { A::foo(); }
};
======================

bug.cc: In constructor 'D::D()':
bug.cc:11:16: internal compiler error: in build_base_path, at cp/class.c:272
Please submit a full bug report, [etc.]

In earlier versions, a misleading error message was given:

bug.cc: In constructor 'D::D()':
bug.cc:11:16: error: cannot call member function 'void A::foo()' without object

Instead, the compiler should complain about an ambiguous base class.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class
  2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
@ 2011-12-18 22:22 ` reichelt at gcc dot gnu.org
  2011-12-30  6:12 ` pinskia at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: reichelt at gcc dot gnu.org @ 2011-12-18 22:22 UTC (permalink / raw)
  To: gcc-bugs

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

Volker Reichelt <reichelt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic,
                   |                            |ice-on-invalid-code
   Target Milestone|---                         |4.6.3


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class
  2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
  2011-12-18 22:22 ` [Bug c++/51614] " reichelt at gcc dot gnu.org
@ 2011-12-30  6:12 ` pinskia at gcc dot gnu.org
  2012-01-04 13:48 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu.org @ 2011-12-30  6:12 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011-12-30
     Ever Confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> 2011-12-30 06:10:47 UTC ---
Confirmed.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class
  2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
  2011-12-18 22:22 ` [Bug c++/51614] " reichelt at gcc dot gnu.org
  2011-12-30  6:12 ` pinskia at gcc dot gnu.org
@ 2012-01-04 13:48 ` rguenth at gcc dot gnu.org
  2012-01-10 18:22 ` jason at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-01-04 13:48 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class
  2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2012-01-04 13:48 ` rguenth at gcc dot gnu.org
@ 2012-01-10 18:22 ` jason at gcc dot gnu.org
  2012-01-11  3:05 ` jason at gcc dot gnu.org
  2012-01-11  3:13 ` jason at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jason at gcc dot gnu.org @ 2012-01-10 18:22 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |jason at gcc dot gnu.org
         AssignedTo|unassigned at gcc dot       |jason at gcc dot gnu.org
                   |gnu.org                     |


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class
  2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2012-01-10 18:22 ` jason at gcc dot gnu.org
@ 2012-01-11  3:05 ` jason at gcc dot gnu.org
  2012-01-11  3:13 ` jason at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jason at gcc dot gnu.org @ 2012-01-11  3:05 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Jason Merrill <jason at gcc dot gnu.org> 2012-01-11 03:04:57 UTC ---
Author: jason
Date: Wed Jan 11 03:04:49 2012
New Revision: 183088

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=183088
Log:
    PR c++/51614
    * class.c (build_base_path): Diagnose ambiguous base.

Added:
    trunk/gcc/testsuite/g++.dg/inherit/ambig1.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/class.c
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class
  2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2012-01-11  3:05 ` jason at gcc dot gnu.org
@ 2012-01-11  3:13 ` jason at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jason at gcc dot gnu.org @ 2012-01-11  3:13 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.6.3                       |4.7.0

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> 2012-01-11 03:13:01 UTC ---
Fixed for 4.7.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-01-11  3:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-18 22:18 [Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class reichelt at gcc dot gnu.org
2011-12-18 22:22 ` [Bug c++/51614] " reichelt at gcc dot gnu.org
2011-12-30  6:12 ` pinskia at gcc dot gnu.org
2012-01-04 13:48 ` rguenth at gcc dot gnu.org
2012-01-10 18:22 ` jason at gcc dot gnu.org
2012-01-11  3:05 ` jason at gcc dot gnu.org
2012-01-11  3:13 ` jason at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).