diff options
author | Hongyu Wang <hongyu.wang@intel.com> | 2023-12-15 10:41:44 +0800 |
---|---|---|
committer | Hongyu Wang <hongyu.wang@intel.com> | 2023-12-15 10:46:03 +0800 |
commit | e7b3cf2a0e34813eb538e2bf8b6a73e4479c6d31 (patch) | |
tree | 2e760bf303d4b69bc6b3457f49e9de8a084b01ef | |
parent | a52940cfee0908aed0d2a674a451f6d99844444d (diff) | |
download | gcc-e7b3cf2a0e34813eb538e2bf8b6a73e4479c6d31.zip gcc-e7b3cf2a0e34813eb538e2bf8b6a73e4479c6d31.tar.gz gcc-e7b3cf2a0e34813eb538e2bf8b6a73e4479c6d31.tar.bz2 |
testsuite: Require dfp for pr112943.c
This test fails on darwin as it does not support _Decimal64,
so require dfp for it.
gcc/testsuite/ChangeLog:
* gcc.target/i386/pr112943.c: Require dfp.
-rw-r--r-- | gcc/testsuite/gcc.target/i386/pr112943.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/pr112943.c b/gcc/testsuite/gcc.target/i386/pr112943.c index 7e299bd..b1840a1 100644 --- a/gcc/testsuite/gcc.target/i386/pr112943.c +++ b/gcc/testsuite/gcc.target/i386/pr112943.c @@ -1,5 +1,5 @@ /* PR target/112943 */ -/* { dg-do compile { target { ! ia32 } } } */ +/* { dg-do compile { target { dfp && { ! ia32 } } } } */ /* { dg-options "-O2 -march=westmere -mapxf" } */ typedef unsigned char __attribute__((__vector_size__(1))) v8u8; |