From 53e954a673a0d6ac80ab1f0591ea4f751e67374c Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Mon, 11 Dec 2023 09:20:49 +0100 Subject: [PATCH] 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. --- gcc/testsuite/gcc.target/i386/libcall-1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2