From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E023C3857809; Tue, 19 Apr 2022 09:18:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E023C3857809 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/105257] [8/9/10/11/12 regression] ICE in final_scan_insn_1, at final.cc:2811 Date: Tue, 19 Apr 2022 09:18:18 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: ice-on-valid-code 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: 12.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Apr 2022 09:18:19 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D105257 --- Comment #2 from Jakub Jelinek --- Created attachment 52830 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D52830&action=3Dedit gcc12-pr105257.patch Untested fix. The problem is that (reg:DI 24 %i0 [109]) in a delay slot of the return satisfies sparc_pic_register_p but epilogue_renumber turns that into: (reg:DI 8 %o0) which doesn't satisfy it. The attached patch fixes that by always copying over ORIGINAL_REGNO. A variant could be to do that only if ORIGINAL_REGNO is non-zero, if it is zero, keep using gen_reg_RTX (which can create a shared rtx and therefore shouldn= 't have ORIGINAL_REGNO modified).=