diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2024-12-19 10:07:28 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2025-01-20 15:44:57 +0000 |
commit | 7cc573017274acfd5a276d959a8297ba04e98002 (patch) | |
tree | 8dc4b87341136aa03ec8bd3c1fb4b3e3d6671b03 /gcc | |
parent | cb35651269cef74301250f5d7c0412f81a33aef4 (diff) | |
download | gcc-7cc573017274acfd5a276d959a8297ba04e98002.zip gcc-7cc573017274acfd5a276d959a8297ba04e98002.tar.gz gcc-7cc573017274acfd5a276d959a8297ba04e98002.tar.bz2 |
arm, testsuite: fix fast-math-bb-slp-complex-mla-float.c dg-add-options
The test uses floats, not fp16 so it should use arm_v8_3a_complex_neon
instead of arm_v8_3a_fp16_complex_neon.
This makes it PASS on arm-linux-gnueabihf instead of being UNRESOLVED.
gcc/testsuite/ChangeLog:
* gcc.dg/vect/complex/fast-math-bb-slp-complex-mla-float.c: Use
arm_v8_3a_complex_neon.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/complex/fast-math-bb-slp-complex-mla-float.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/complex/fast-math-bb-slp-complex-mla-float.c b/gcc/testsuite/gcc.dg/vect/complex/fast-math-bb-slp-complex-mla-float.c index 61026be..7b2a8dd 100644 --- a/gcc/testsuite/gcc.dg/vect/complex/fast-math-bb-slp-complex-mla-float.c +++ b/gcc/testsuite/gcc.dg/vect/complex/fast-math-bb-slp-complex-mla-float.c @@ -1,7 +1,7 @@ /* { dg-do compile } */ /* { dg-require-effective-target vect_complex_add_float } */ /* { dg-additional-options "-ffast-math -fdump-tree-vect-details" } */ -/* { dg-add-options arm_v8_3a_fp16_complex_neon } */ +/* { dg-add-options arm_v8_3a_complex_neon } */ #define TYPE float #define N 16 |