From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 078083858D38; Fri, 8 Sep 2023 11:26:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 078083858D38 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1694172386; bh=qjtBGyWERtLL3Q7OejexqH9XpDJR6MLpT5Tm+GApRqs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=i0spt+cjwV9hXPLd4oMrrdsov6beV8xm1I9iCcFI3kUeWOb8MVdauhjtxfDMFto7h dr7eYktKr/pMYTGujzHJW/FPZOZstndm3AGS6IS6uVEgvzPSt0YE0E/hR4Lw73o62A UVpofaFxdzV0uhsiy/3sySO4wKtHtKWB8AaAWbFk= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/111338] ice in vn_walk_cb_data Date: Fri, 08 Sep 2023 11:26:25 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub 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: cc 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=3D111338 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #4 from Jakub Jelinek --- Slightly cleaned up, still -O1: _BitInt(575) e; int main () { __atomic_fetch_and (&e, 1, __ATOMIC_RELAXED); } (otherwise you'd want the wb suffix on the large constant to avoid warning). Or even _BitInt(575) e; _BitInt(575) foo (void) { return e & 1; } The problem is that push_partial_def uses a fixed size 512-bit buffer, for larger stuff it fails and my PR93582 patch assumed it doesn't fail.=