From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26675 invoked by alias); 14 Feb 2014 23:35:32 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 26637 invoked by uid 48); 14 Feb 2014 23:35:27 -0000 From: "reichelt at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/60108] [4.7/4.8/4.9 Regression] [C++11] ICE in use_thunk, at cp/method.c:340 Date: Fri, 14 Feb 2014 23:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: reichelt at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.7.4 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_known_to_work keywords cf_reconfirmed_on cc everconfirmed short_desc target_milestone cf_known_to_fail Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-02/txt/msg01375.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60108 Volker Reichelt changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Known to work| |4.4.0, 4.5.0, 4.6.0 Keywords| |ice-on-valid-code Last reconfirmed| |2014-02-14 CC| |reichelt at gcc dot gnu.org Ever confirmed|0 |1 Summary|ICE in use_thunk, at |[4.7/4.8/4.9 Regression] |cp/method.c:340 |[C++11] ICE in use_thunk, | |at cp/method.c:340 Target Milestone|--- |4.7.4 Known to fail| |4.7.0 --- Comment #1 from Volker Reichelt --- Confirmed. ICEs since GCC 4.7.0. Here's a testcase without variadic templates: ============================================ template struct A { virtual ~A(); }; template struct B : A<0>, A<1> { ~B() = default; }; struct C : B { C() {} }; ============================================