From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 10B223858D38; Tue, 7 Feb 2023 18:37:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 10B223858D38 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675795052; bh=Zer/g1sWc4Zxxy60NVe9FQr/9lN0aKtXpVpQETER19E=; h=From:To:Subject:Date:In-Reply-To:References:From; b=icmekIZPJSthJ/7eRwMclviUzLOOd41+d2H9gc3Gf0mdVCkhe/9HsP35Ck4O/NaWq 9ph9M9l37Qay8HuJfk6duLZOFVz+I6MCAcMPLyVrRwl9vm5EyjoaEihn7qtS3DYAa5 EKYIWPLw2jFqjJYJCtj91A7ejgxjfZf+BN54y6nM= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/108684] [12/13 Regression] ICE: verify_ssa failed Date: Tue, 07 Feb 2023 18:37:31 +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, inline-asm X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc target_milestone cf_known_to_fail 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=3D108684 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[13 Regression] ICE: |[12/13 Regression] ICE: |verify_ssa failed |verify_ssa failed Target Milestone|13.0 |12.3 Known to fail| |12.1.0 --- Comment #5 from Andrew Pinski --- New testcase which shows this is indepdent of VRP, fails in GCC 12.x also: ``` static int t; int f (int a) { int t1; asm (" " : "=3Dr" (t1) : : "eax", "memory"); t =3D t1; if (a) return 0; __builtin_unreachable(); } ```=