From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 14E5F385841A; Thu, 25 Aug 2022 08:45:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 14E5F385841A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1661417107; bh=F04E2RlgugpdlhxIxZWgHj7CyUXQjE7pR3bXLgpdYbY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=WQdqiVywPq8CPRsN01n1rxCz1EhcXRkesHAe2dE7oTIKiGHbpfWL2h/RjL3JNi766 v5q/eikPJmqWPJ7qVB2t3JkSFRB9x+BRwLftEwtg0Zcbop4Wq/q/Ha4E7b5bbgNWvP SUBNUeiolAMUdPweo5yZw9FWj8tQkCnDWGxpo9BM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/106737] [13 Regression] ICE: verify_ssa failed (error: stmt with wrong VUSE) Date: Thu, 25 Aug 2022 08:45:06 +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: 13.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: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106737 --- Comment #3 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:818073fe9ddc384f0cf702306c672b935fa42325 commit r13-2197-g818073fe9ddc384f0cf702306c672b935fa42325 Author: Richard Biener Date: Thu Aug 25 10:42:30 2022 +0200 tree-optimization/106737 - remove intermediate SSA verification in auto= par The following removes intermediate SSA verification in autopar which isn't expected to succeed after previous changes delaying (virtual) SSA update to the end of the pass. PR tree-optimization/106737 * tree-parloops.cc (transform_to_exit_first_loop_alt): Do not verify SSA form. * gcc.dg/autopar/pr106737.c: New testcase.=