From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9053A3858D1E; Tue, 16 Jan 2024 06:00:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9053A3858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1705384850; bh=eSSBTVIPffB6XNFVRJniSzl+lGoqU039k0pOWoW7nHg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=PrN7RPnldIyZ9nQQQiruU6toeDdJNucCAspIg1JXrZuMQwuZLVy8HRQHNnkIPmZFw qhwwIJlglmtXQOLZ0wk+dCAcLCP5SqAVpP7UwB3AiQuh92GY894nFhWaTn9apWJ7u5 SG9nXv2BVerCTfPHQqYUfa+Ey8t9XlzMcT9w7zFc= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/113415] ICE: RTL check: expected elt 3 type 'e' or 'u', have '0' (rtx code_label) in PATTERN, at rtl.h:1511 with -mstringop-strategy=byte_loop and invalid __asm__ on _BitInt() Date: Tue, 16 Jan 2024 06:00:50 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-checking, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- 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=3D113415 --- Comment #1 from Andrew Pinski --- This might fail the same way: ``` void foo(void) { unsigned long bitint0[64]; lab: __asm__ goto("" : "=3Dr"(bitint0) : : : lab); } ```=