diff options
author | Alex Coplan <alex.coplan@arm.com> | 2020-08-28 10:30:59 +0100 |
---|---|---|
committer | Alex Coplan <alex.coplan@arm.com> | 2020-08-28 10:31:08 +0100 |
commit | 43f3e695699cb4bde7824f9d05bd618f13d2c8b8 (patch) | |
tree | 4c192a0d79e10156022666ed3c7eba8f8dd4731b | |
parent | 9d463ce7f983f03f0d65da03cfa430e29a0840c2 (diff) | |
download | gcc-43f3e695699cb4bde7824f9d05bd618f13d2c8b8.zip gcc-43f3e695699cb4bde7824f9d05bd618f13d2c8b8.tar.gz gcc-43f3e695699cb4bde7824f9d05bd618f13d2c8b8.tar.bz2 |
aarch64: Disable mem-shift-canonical test on ILP32
This test fails on ILP32 since we're looking for a pattern that could
only be hit on LP64. Disabling the test on ILP32 since the problematic
mult pattern was never hit there, so there's nothing to test.
gcc/testsuite/ChangeLog:
* gcc.target/aarch64/mem-shift-canonical.c: Skip on ILP32.
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/mem-shift-canonical.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/mem-shift-canonical.c b/gcc/testsuite/gcc.target/aarch64/mem-shift-canonical.c index 36beed4..47479ff 100644 --- a/gcc/testsuite/gcc.target/aarch64/mem-shift-canonical.c +++ b/gcc/testsuite/gcc.target/aarch64/mem-shift-canonical.c @@ -3,6 +3,7 @@ /* { dg-do compile } */ /* { dg-options "-Os -ftree-vectorize -dp" } */ +/* { dg-require-effective-target lp64 } */ struct T |