From: Francois-Xavier Coudert Date: Sat, 2 Dec 2023 09:02:10 +0000 (+0100) Subject: Testsuite, Darwin: skip -mcmodel=large test X-Git-Tag: basepoints/gcc-15~4065 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b74981b5cf32ebf4bfffd25e7174b5c80243447a;p=thirdparty%2Fgcc.git Testsuite, Darwin: skip -mcmodel=large test -mcmodel=large is not supported (yet) on Darwin [PR90698] 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 8bd6684a925e..a40ff5620fb1 100644 --- a/gcc/testsuite/gcc.target/i386/libcall-1.c +++ b/gcc/testsuite/gcc.target/i386/libcall-1.c @@ -4,5 +4,6 @@ /* { dg-do compile { target int128 } } */ /* { dg-options "-O2 -mcmodel=large" } */ /* { dg-final { scan-assembler "globl\t__divti3" } } */ +/* { dg-xfail-if "PR90698" { *-*-darwin* } } */ __int128 a, b; void foo () { a = a / b; }