From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0CB4F388DD79; Thu, 15 Dec 2022 13:10:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0CB4F388DD79 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1671109834; bh=HpxHJZ7YIqOA/9csEjqVrCf68EokxG1Ddr2lZheaUbU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=bPhvnfCLnV9UMvImjQHWFnuPH/giivZ2IUH0NrIc5M4Hca0+Dn6CjBiL7/h/u/i2x bILWn2lmEzgF2zbmBW1iS8ZRs+EdqGs05q5iaSQ26J+rqw7VFFgh2P+9Q9kv/jN4yh tZsjbFct8J7Z0yUuOSwRk1o6zFXBYoFq7qUaC8+c= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/106751] [10/11/12/13 Regression] internal compiler error: in purge_dead_edges with inline-asm goto Date: Thu, 15 Dec 2022 13:10:31 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 12.2.0 X-Bugzilla-Keywords: ice-on-valid-code, inline-asm X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords priority cc short_desc target_milestone 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=3D106751 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|needs-bisection | Priority|P3 |P2 CC| |jakub at gcc dot gnu.org Summary|internal compiler error: in |[10/11/12/13 Regression] |purge_dead_edges with |internal compiler error: in |inline-asm goto |purge_dead_edges with | |inline-asm goto Target Milestone|--- |10.5 --- Comment #8 from Jakub Jelinek --- Reduced testcase that ICEs on x86_64-linux too (-O2): int *foo (void); void bar (void) { asm goto ("" : : : : lab); __builtin_unreachable (); lab: while (1) { int o; asm ("" : "=3Dr" (o) : "g" (1)); *foo () =3D o; } } Started with r0-128630-ga3afdbb80906a5553a64f9ba7686a57d2f43f536=