From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7897 invoked by alias); 18 Mar 2014 17:35:34 -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 7684 invoked by uid 48); 18 Mar 2014 17:35:02 -0000 From: "burnus at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/60567] New: lto1 ICE in add_symbol_to_partition, at lto/lto-partition.c:233 Date: Tue, 18 Mar 2014 17:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: burnus at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc Message-ID: 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-03/txt/msg01620.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60567 Bug ID: 60567 Summary: lto1 ICE in add_symbol_to_partition, at lto/lto-partition.c:233 Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: lto Assignee: unassigned at gcc dot gnu.org Reporter: burnus at gcc dot gnu.org CC: rguenth at gcc dot gnu.org Possibly related: PR56775, PR56963 and PR57715 - or not. The following code ICEs when doing with GCC 4.9: $ gcc -c -flto test13.ii $ gcc -r -nostdlib test13.o -flto lto1: internal compiler error: in add_symbol_to_partition, at lto/lto-partition.c:233 0x5b4dc4 add_symbol_to_partition ../../gcc/lto/lto-partition.c:231 0x5b4e69 add_references_to_partition ../../gcc/lto/lto-partition.c:94 0x5b4f9a add_symbol_to_partition_1 ../../gcc/lto/lto-partition.c:168 0x5b649e lto_balanced_map() ../../gcc/lto/lto-partition.c:727 0x5b08a0 do_whole_program_analysis ../../gcc/lto/lto.c:3276 0x5b08a0 lto_main() ../../gcc/lto/lto.c:3416 Testcase: #pragma implementation class EIdent { }; #pragma interface class CellInsertedListener { virtual void cellInserted( const EIdent& newCell ) = 0; }; class LayerListUpdateListener { virtual void layerRemoved( const EIdent& layerId ) = 0; }; class VwBboxCacheMaster : public CellInsertedListener, public LayerListUpdateListener { virtual void layerRemoved (const EIdent&) { } };