From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53701 invoked by alias); 27 Jul 2015 08:12:58 -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 53673 invoked by uid 48); 27 Jul 2015 08:12:54 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/67005] [5/6 Regression] ICE: in verify_loop_structure, at cfgloop.c:1647 (loop with header n not in loop tree) Date: Mon, 27 Jul 2015 08:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cf_known_to_work assigned_to target_milestone short_desc everconfirmed 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: 2015-07/txt/msg02319.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67005 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Last reconfirmed| |2015-07-27 Known to work| |4.9.3 Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot gnu.org Target Milestone|--- |5.3 Summary|ICE: in |[5/6 Regression] ICE: in |verify_loop_structure, at |verify_loop_structure, at |cfgloop.c:1647 (loop with |cfgloop.c:1647 (loop with |header n not in loop tree) |header n not in loop tree) Ever confirmed|0 |1 Known to fail| |5.2.0, 6.0 --- Comment #1 from Richard Biener --- Confirmed. The loop "appears" after CDDCE1 where a loop with multiple entries becomes one with a single entry. DCE expects cleanup-cfg to fix things but that doesn't do anything and thus doesn't end up fixing up loops. Mine.