public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-6013] aarch64: fix: ls64 tests fail on aarch64_be [PR103729]
@ 2021-12-16 10:50 Przemyslaw Wirkus
  0 siblings, 0 replies; only message in thread
From: Przemyslaw Wirkus @ 2021-12-16 10:50 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:0a68862e782847752be0ea2b2a987278cdbefc9e

commit r12-6013-g0a68862e782847752be0ea2b2a987278cdbefc9e
Author: Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
Date:   Thu Dec 16 10:49:00 2021 +0000

    aarch64: fix: ls64 tests fail on aarch64_be [PR103729]
    
    This patch is sorting issue with LS64 intrinsics tests failing with
    AArch64_be targets.
    
    gcc/ChangeLog:
    
            PR target/103729
            * config/aarch64/aarch64-simd.md (aarch64_movv8di): Allow big endian
            targets to move V8DI.

Diff:
---
 gcc/config/aarch64/aarch64-simd.md | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gcc/config/aarch64/aarch64-simd.md b/gcc/config/aarch64/aarch64-simd.md
index 9ebf795a624..f95a7e1d91c 100644
--- a/gcc/config/aarch64/aarch64-simd.md
+++ b/gcc/config/aarch64/aarch64-simd.md
@@ -7265,9 +7265,8 @@
 (define_insn "*aarch64_movv8di"
   [(set (match_operand:V8DI 0 "nonimmediate_operand" "=r,m,r")
 	(match_operand:V8DI 1 "general_operand" " r,r,m"))]
-  "!BYTES_BIG_ENDIAN
-   && (register_operand (operands[0], V8DImode)
-       || register_operand (operands[1], V8DImode))"
+  "(register_operand (operands[0], V8DImode)
+    || register_operand (operands[1], V8DImode))"
   "#"
   [(set_attr "type" "multiple,multiple,multiple")
    (set_attr "length" "32,16,16")]


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-16 10:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-16 10:50 [gcc r12-6013] aarch64: fix: ls64 tests fail on aarch64_be [PR103729] Przemyslaw Wirkus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).