From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 55C343986406; Fri, 11 Sep 2020 10:37:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 55C343986406 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1599820679; bh=1hD0ls6JnAlj2lWGbP2s2RQb4C5EUbnmxDgVuUAz90Y=; h=From:To:Subject:Date:In-Reply-To:References:From; b=p0f0kWFcF37/EynMCOsK8xSeoeV+rtW2FxYFC10SHoeT30k6Ej9CwTwr3cQVMF2iL gDUP+aJg1+mqHaFbHnxOMFm42G1s84B0f5LNpCQoN2IqsjsNsJMc/WdilWOnuwBtKK ozhKF6HK8dnmLJv8juC3AIsszW3eMizr43K6itcQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/95133] [8/9 Regression] ICE in gimple_redirect_edge_and_branch_force, at tree-cfg.c:6075 Date: Fri, 11 Sep 2020 10:37:59 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 8.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Sep 2020 10:37:59 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95133 --- Comment #8 from CVS Commits --- The releases/gcc-9 branch has been updated by Richard Biener : https://gcc.gnu.org/g:5024ea60b74ac61c00b2aee40878761f7cf58973 commit r9-8862-g5024ea60b74ac61c00b2aee40878761f7cf58973 Author: Richard Biener Date: Fri May 15 09:38:54 2020 +0200 tree-optimization/95133 - avoid abnormal edges in path splitting When path splitting tries to detect a CFG diamond make sure it is composed of normal (non-EH, not abnormal) edges. Otherwise CFG manipulation later may fail. 2020-05-15 Richard Biener PR tree-optimization/95133 * gimple-ssa-split-paths.c (find_block_to_duplicate_for_splitting_paths): Check for normal edges. * gcc.dg/pr95133.c: New testcase. (cherry picked from commit aaf1ee48316f9b414b11c17e298198925d816595)=