https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99724
--- Comment #7 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:4f992de4f369e17b64a66246ec35bf75f41dc98d commit r11-7814-g4f992de4f369e17b64a66246ec35bf75f41dc98d Author: Jakub Jelinek <ja...@redhat.com> 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_<MODE>_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 <ja...@redhat.com> PR target/99724 * config/arm/vec-common.md (one_cmpl<mode>2, neg<mode>2, movmisalign<mode>): Disable expanders for TARGET_REALLY_IWMMXT. * gcc.target/arm/pr99724.c: New test.