From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7F7F83858C42; Sat, 9 Dec 2023 23:39:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7F7F83858C42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1702165175; bh=QSB9EiD18M0hF+nTpG5P3NQJUeSvfUE3kaDPKaffm/Y=; h=From:To:Subject:Date:In-Reply-To:References:From; b=xZ4UYTU90gBw2bm+Awq6zUy4Xr+TC9FGk6jOVaooHHypbJ3WjTvI9hbYnv/ThA1Gw 6s1d0wrR+1/7VwVLS1llQm/g/fSELUKRoPNU9mipQJ/wf8gvH2erR1kolBi0C4ezeD hGEPvOD+Gh9o2lAzzGiyo0/0uxIFIlrjF1Ei+yq8= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112941] during GIMPLE pass: bitintlower ICE: in handle_operand_addr, at gimple-lower-bitint.cc:2126 (gimple-lower-bitint.cc:2134) at -O with _BitInt() Date: Sat, 09 Dec 2023 23:39: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: 14.0 X-Bugzilla-Keywords: ice-on-valid-code 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: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: everconfirmed cf_reconfirmed_on 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=3D112941 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Last reconfirmed| |2023-12-09 Status|UNCONFIRMED |NEW --- Comment #1 from Andrew Pinski --- Confirmed. Slightly more reduced: ``` _BitInt (2049) b2049; unsigned _BitInt (6384) b16384; void foo (signed char t) { b2049 =3D b16384 * t; } ```=