From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D88953858D35; Mon, 6 Feb 2023 20:23:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D88953858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675715015; bh=Ehe/vtq02tOTXNeqgx1eItXTuLOo0df6piNMPpwSrYg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=StzWZIQ82zTBACv4nEf84M2gjGSmdXTgu7omvLqGuso6zh4PNgCgo+PxL6iZgtGJ1 MVv1tigUaMgfCl61BBbkTOW1vpz2tL0Cii4FKf8tUIka6TcABcBH0gyEOB77Zin3IM A+4fMTBIq7R5IDeKNwriaOrqqFpN9oqZc8P1sK+A= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/108684] [13 Regression] ICE: verify_ssa failed Date: Mon, 06 Feb 2023 20:23:35 +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: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on everconfirmed bug_status 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 ---------------------------------------------------------------------------- Last reconfirmed| |2023-02-06 Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #1 from Andrew Pinski --- Confirmed, a slightly better testcase which causes the ICE with the C front= -end also (the C++ front-end inserts the __builtin_unreachable there) and should= be able to compile on all targets: int f (int a) { asm (" " : "=3DX" (a) : : "memory"); if (a) return 0; __builtin_unreachable(); }=