From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 74BB33858D32; Sun, 19 Nov 2023 09:24:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 74BB33858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1700385894; bh=h/Bv0TtQ8thHVLky9cUGqYw/yvFnkO2K0ivti6WUEog=; h=From:To:Subject:Date:In-Reply-To:References:From; b=urRL2zeXglU2YmIiLMWMUGY3EKx+hhlWwRFCjI+5Fcx6OaQDXRdUkDOXEy1h9ga+y cnAposjMw/EyiJATOP4t8XBLjWI8HXHm3j1ioH7g+Bb1xu2ClL7SWvlA1Pi/Cs6R18 o9e6z0/CLYhuOq6ItQ4pEFz6/H5V3FlGoRWVuM04= From: "ebotcazou at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/112572] [14 regression] LLVM miscompiled since r14-5355-g3cd3a09b3f91a1 Date: Sun, 19 Nov 2023 09:24:53 +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: wrong-code X-Bugzilla-Severity: blocker X-Bugzilla-Who: ebotcazou at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 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=3D112572 Eric Botcazou changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ebotcazou at gcc dot gnu.o= rg --- Comment #26 from Eric Botcazou --- > Eric B. mentioned back in 2011, neither REG_DEAD nor REG_UNUSED needs to = be > kept up to date: > https://gcc.gnu.org/pipermail/gcc-patches/2011-October/326733.html > Also see PR 48773 where he mentioned the same. > He mentioned the same thing again in 2018 even: > https://gcc.gnu.org/pipermail/gcc-patches/2018-October/508057.html REG_DEAD and REG_UNUSED notes are recomputed by DF so they do not need to be maintained explicitly (although you may do it of course). REG_EQUAL and REG_EQUIV notes are not recomputed by DF so they need to maintained explici= tly.=