diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2024-06-04 13:33:46 +0200 |
---|---|---|
committer | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2024-06-04 13:33:46 +0200 |
commit | 00fb385a25a7fbaa9c7060ddd5f41a8c3b1548d1 (patch) | |
tree | 8f501221c37f976f07adf72991dff546979d636b /gcc | |
parent | b8e28381cb5c0cddfe5201faf799d8b27f5d7d6c (diff) | |
download | gcc-00fb385a25a7fbaa9c7060ddd5f41a8c3b1548d1.zip gcc-00fb385a25a7fbaa9c7060ddd5f41a8c3b1548d1.tar.gz gcc-00fb385a25a7fbaa9c7060ddd5f41a8c3b1548d1.tar.bz2 |
testsuite: i386: Require ifunc support in gcc.target/i386/avx10_1-25.c etc.
Two new AVX10.1 tests FAIL on Solaris/x86:
FAIL: gcc.target/i386/avx10_1-25.c (test for excess errors)
FAIL: gcc.target/i386/avx10_1-26.c (test for excess errors)
Excess errors:
/vol/gcc/src/hg/master/local/gcc/testsuite/gcc.target/i386/avx10_1-25.c:6:9: error: the call requires 'ifunc', which is not supported by this target
Fixed by requiring ifunc support.
Tested on i386-pc-solaris2.11 and x86_64-pc-linux-gnu.
2024-06-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
gcc/testsuite:
* gcc.target/i386/avx10_1-25.c: Require ifunc support.
* gcc.target/i386/avx10_1-26.c: Likewise.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/i386/avx10_1-25.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/avx10_1-26.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/avx10_1-25.c b/gcc/testsuite/gcc.target/i386/avx10_1-25.c index 73f1b72..5bd2b88 100644 --- a/gcc/testsuite/gcc.target/i386/avx10_1-25.c +++ b/gcc/testsuite/gcc.target/i386/avx10_1-25.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-O2 -mavx" } */ +/* { dg-require-ifunc "" } */ #include <immintrin.h> __attribute__((target_clones ("default","avx10.1-256"))) diff --git a/gcc/testsuite/gcc.target/i386/avx10_1-26.c b/gcc/testsuite/gcc.target/i386/avx10_1-26.c index 514ab57..cf8c976 100644 --- a/gcc/testsuite/gcc.target/i386/avx10_1-26.c +++ b/gcc/testsuite/gcc.target/i386/avx10_1-26.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-O2 -mavx512f" } */ +/* { dg-require-ifunc "" } */ #include <immintrin.h> __attribute__((target_clones ("default","avx10.1-512"))) |