aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2023-12-11 09:20:49 +0100
committerFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2023-12-11 09:21:26 +0100
commit53e954a673a0d6ac80ab1f0591ea4f751e67374c (patch)
tree52b0346f5d106c88e152255bc6b49bf3d1e30d6b
parent7e854b58084c131fceca9e8fa9dcc7469972e69d (diff)
downloadgcc-53e954a673a0d6ac80ab1f0591ea4f751e67374c.zip
gcc-53e954a673a0d6ac80ab1f0591ea4f751e67374c.tar.gz
gcc-53e954a673a0d6ac80ab1f0591ea4f751e67374c.tar.bz2
Testsuite, Darwin: actually skip test
Previous commit xfailed instead of skipping, but we really want to skip. gcc/testsuite/ChangeLog: * gcc.target/i386/libcall-1.c: Skip on darwin.
-rw-r--r--gcc/testsuite/gcc.target/i386/libcall-1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/i386/libcall-1.c b/gcc/testsuite/gcc.target/i386/libcall-1.c
index a40ff56..cb95aca 100644
--- a/gcc/testsuite/gcc.target/i386/libcall-1.c
+++ b/gcc/testsuite/gcc.target/i386/libcall-1.c
@@ -4,6 +4,6 @@
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -mcmodel=large" } */
/* { dg-final { scan-assembler "globl\t__divti3" } } */
-/* { dg-xfail-if "PR90698" { *-*-darwin* } } */
+/* { dg-skip-if "PR90698" { *-*-darwin* } } */
__int128 a, b; void foo () { a = a / b; }