From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 25C143858D33; Mon, 25 Mar 2024 23:13:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 25C143858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1711408397; bh=SsYDTpir8FbrqY/2bL9UHVw4KrmqVBrfpMwhAE+ZF8g=; h=From:To:Subject:Date:In-Reply-To:References:From; b=jc7DusTkMpvE7kdL0YjocDI27AuVF8Na2f9wMSzw0qp98pB8mghxn3gjmpC0M47jo kuRxwIDWjoQTkzWK3si4En7hbWlqktfEMYrp40AaxJICF4e12iaCh90k/T2mKrYtGk ABAg8aPPxMdS6AJ/a+DG9IBUdQY/AF+L/K8xh544= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/114464] [14 regression] ICE when building tdscpp-20240212 Date: Mon, 25 Mar 2024 23:13:16 +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, needs-bisection 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: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc everconfirmed cf_reconfirmed_on keywords 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=3D114464 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |pinskia at gcc dot gnu.org Ever confirmed|0 |1 Last reconfirmed| |2024-03-25 Keywords| |needs-bisection --- Comment #5 from Andrew Pinski --- Better reduced testcase (removes the template and unused arguments): ``` void h(unsigned char *scratch, bool carry) { for (int i =3D 0; i < 16; i++) { bool b =3D scratch[i] <<=3D 1; if (carry) scratch[i] |=3D 1; carry =3D b; } } ```=