From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 704C5384C00B; Wed, 24 Mar 2021 10:23:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 704C5384C00B From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/99724] [11 Regression] CE in in extract_insn, at recog.c:2770 Date: Wed, 24 Mar 2021 10:23:40 +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: 11.0 X-Bugzilla-Keywords: ice-on-valid-code 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: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.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 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: Wed, 24 Mar 2021 10:23:40 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99724 --- Comment #7 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:4f992de4f369e17b64a66246ec35bf75f41dc98d commit r11-7814-g4f992de4f369e17b64a66246ec35bf75f41dc98d Author: Jakub Jelinek Date: Wed Mar 24 11:22:35 2021 +0100 arm: Fix some more vec-common.md patterns for iwmmxt [PR99724] The following patch fixes similar issues as in PR98849; in older gcc versions, the expanders were present in neon.md guarded with TARGET_NEON, but they got moved to vec-common.md and guarded with ARM_HAVE__ARITH so that they handle both MVE and Neon. The macros are enabled for some modes even for iwmmxt which has some vector support for those modes, but only limited. In particular, neither the one_cmpl, nor neg, nor movmisalign patterns are present. For some reason I've failed to construct something that ICEs with movmisalign, so that is not covered by the testsuite, but both one_cmpl and neg ICE. 2021-03-24 Jakub Jelinek PR target/99724 * config/arm/vec-common.md (one_cmpl2, neg2, movmisalign): Disable expanders for TARGET_REALLY_IWMMXT. * gcc.target/arm/pr99724.c: New test.=