From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 554 invoked by alias); 12 Apr 2012 11:40:46 -0000 Received: (qmail 540 invoked by uid 22791); 12 Apr 2012 11:40:45 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KHOP_THREADED X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 12 Apr 2012 11:40:33 +0000 From: "wschmidt at linux dot vnet.ibm.com" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/52937] [4.8 Regression] ICE in several cpu2006 benchmarks with -fprofile-use (assert in get_loop_body) Date: Thu, 12 Apr 2012 11:40:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: wschmidt at linux dot vnet.ibm.com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.8.0 X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 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 X-SW-Source: 2012-04/txt/msg00835.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52937 --- Comment #2 from wschmidt at linux dot vnet.ibm.com 2012-04-12 11:39:37 UTC --- Sure, I'll get that information today. On Thu, 2012-04-12 at 09:28 +0000, rguenth at gcc dot gnu.org wrote: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52937 > > Richard Guenther changed: > > What |Removed |Added > ---------------------------------------------------------------------------- > Target Milestone|--- |4.8.0 > > --- Comment #1 from Richard Guenther 2012-04-12 09:28:53 UTC --- > Hmpf. Can you isolate the pass that causes this with > > Index: gcc/passes.c > =================================================================== > *** gcc/passes.c.orig 2012-03-16 15:13:32.000000000 +0100 > --- gcc/passes.c 2012-03-16 15:14:17.000000000 +0100 > *************** execute_function_todo (void *data) > *** 1732,1737 **** > --- 1732,1741 ---- > verify_gimple_in_cfg (cfun); > if (flags & TODO_verify_flow) > verify_flow_info (); > + if (current_loops > + /* Between IRA and reload loops are broken but preserved. */ > + && (cfun->curr_properties & PROP_loops)) > + verify_loop_structure (); > if (current_loops && loops_state_satisfies_p (LOOP_CLOSED_SSA)) > verify_loop_closed_ssa (false); > if (flags & TODO_verify_rtl_sharing) > > ? >