From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id CFE9F3858D38; Sun, 22 Oct 2023 23:50:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CFE9F3858D38 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698018658; bh=Sps1vyPmIzMpKZRNXXnFnAGYoMxuXliSOrct0U5VohI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=eDGu2uYrbL/VLzDviwKlmgokrPxzFtNVbmm0dZZSSvpMq+eQahp5vrp1U075ZbD4M XjLhIpeYjgY5i9+rghpeE6V3nudqlJI62Hl10Xk78fEWZUaL973uVwasGz0RWm2J1l 3WcolQnASSBdfK4ZqzSaMLb/3R0V52O5yLkBZfrA= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/111822] [12/13/14 Regression] during RTL pass: lr_shrinkage ICE: in operator[], at vec.h:910 with -O2 -m32 -flive-range-shrinkage -fno-dce -fnon-call-exceptions Date: Sun, 22 Oct 2023 23:50:58 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: EH, 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: 12.4 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: everconfirmed cf_reconfirmed_on bug_status 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=3D111822 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Last reconfirmed| |2023-10-22 Status|UNCONFIRMED |NEW Keywords| |needs-bisection --- Comment #1 from Andrew Pinski --- Confirmed. Note changing: ``` while (oldtop) Null(); ``` to: ``` if (oldtop) while (true) Null(); ``` to get the same IR coming into expand, still passes in GCC 11.4.0.=