From: Francois-Xavier Coudert Date: Mon, 11 Dec 2023 08:20:49 +0000 (+0100) Subject: Testsuite, Darwin: actually skip test X-Git-Tag: basepoints/gcc-15~3738 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=53e954a673a0d6ac80ab1f0591ea4f751e67374c;p=thirdparty%2Fgcc.git 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. --- diff --git a/gcc/testsuite/gcc.target/i386/libcall-1.c b/gcc/testsuite/gcc.target/i386/libcall-1.c index a40ff5620fb1..cb95aca7a29a 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; }