From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 568EF3858C30; Thu, 21 Dec 2023 10:53:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 568EF3858C30 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1703156008; bh=qAxsdruahdjBefw+AVfj5zPYtohM3BEbVv8hDJJGYFQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=dU19IoAEhew/d9hJmGjSzWU4lWBiYbR30UFEO9Eo+z6nyEPBI+2Ay6LWEUedItN3q EWlsc3uICvnky9TgSLKChaDDcRo2sWRL8FyZ/17oU4PYKXnTX/0LAZQ0BoG+W2uiXd wkgfUuA+riL89nSpiEEP3ojGBB35Pjb3nmM9SCDg= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/113093] [14 Regression][aarch64] ICE in rtl_verify_bb_insn, at cfgrtl.cc:2796 since r14-6605-gc0911c6b357ba9 Date: Thu, 21 Dec 2023 10:53:28 +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: 14.0 X-Bugzilla-Keywords: ice-on-valid-code, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: acoplan at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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=3D113093 --- Comment #3 from GCC Commits --- The master branch has been updated by Alex Coplan : https://gcc.gnu.org/g:aca1f9d7cab3dc1a374a7dc0ec6f7a8d02d2869a commit r14-6784-gaca1f9d7cab3dc1a374a7dc0ec6f7a8d02d2869a Author: Alex Coplan Date: Thu Dec 21 10:52:44 2023 +0000 aarch64: Prevent moving throwing accesses in ldp/stp pass [PR113093] As the PR shows, there was nothing to prevent the ldp/stp pass from trying to move throwing insns, which lead to an RTL verification failure. This patch fixes that. gcc/ChangeLog: PR target/113093 * config/aarch64/aarch64-ldp-fusion.cc (latest_hazard_before): If the insn is throwing, record the previous insn as a hazard to prevent moving it from the end of the BB. gcc/testsuite/ChangeLog: PR target/113093 * gcc.dg/pr113093.c: New test.=