diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2020-04-20 22:36:09 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2021-03-23 15:11:46 +0000 |
commit | aa706c46366553081a618502e9d71530cfa74dfa (patch) | |
tree | 7a823083128b303ace86bb62fbf9bff77f84d5dc /gcc | |
parent | 3c0351f287e1fdf9a085c499f4657a6501c6cf29 (diff) | |
download | gcc-aa706c46366553081a618502e9d71530cfa74dfa.zip gcc-aa706c46366553081a618502e9d71530cfa74dfa.tar.gz gcc-aa706c46366553081a618502e9d71530cfa74dfa.tar.bz2 |
testsuite/arm: Add arm_v8_2a_i8mm options in gcc.target/arm/simd/vmmla_1.c
We need to add the options corresponding to the arm_v8_2a_i8mm_ok
effective target in order to use the right float-abi option:
-mfloat-abi=softfp makes the test pass for arm-linux-gnueabi,
while no -mfloat-abi option is needed for arm-linux-gnueabihf.
2021-03-19 Christophe Lyon <christophe.lyon@linaro.org>
gcc/testsuite/
* gcc.target/arm/simd/vmmla_1.c: Add arm_v8_2a_i8mm options.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/arm/simd/vmmla_1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/arm/simd/vmmla_1.c b/gcc/testsuite/gcc.target/arm/simd/vmmla_1.c index d33ebf3..a88c4ea 100644 --- a/gcc/testsuite/gcc.target/arm/simd/vmmla_1.c +++ b/gcc/testsuite/gcc.target/arm/simd/vmmla_1.c @@ -1,6 +1,7 @@ /* { dg-do assemble } */ /* { dg-require-effective-target arm_v8_2a_i8mm_ok } */ -/* { dg-options "-save-temps -O2 -march=armv8.2-a+i8mm -mfpu=auto -mfloat-abi=hard" } */ +/* { dg-options "-save-temps -O2 -mfpu=auto" } */ +/* { dg-add-options arm_v8_2a_i8mm } */ #include "arm_neon.h" |