From: Richard Sandiford Date: Thu, 2 Jan 2025 17:33:49 +0000 (+0000) Subject: Use _Float128 in test for PR118184 X-Git-Tag: basepoints/gcc-16~3047 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99d5ef700619c28904846399a6f6692af4c56b1b;p=thirdparty%2Fgcc.git Use _Float128 in test for PR118184 The test was failing on x86 because longdouble128 only checks sizeof, rather than a full 128-bit payload. Using _Float128 is more portable and still exposes the original bug. gcc/testsuite/ PR target/118184 * gcc.dg/torture/pr118184.c: Use _Float128 instead of long double. --- diff --git a/gcc/testsuite/gcc.dg/torture/pr118184.c b/gcc/testsuite/gcc.dg/torture/pr118184.c index 20f567af11f0..5933e2a12221 100644 --- a/gcc/testsuite/gcc.dg/torture/pr118184.c +++ b/gcc/testsuite/gcc.dg/torture/pr118184.c @@ -1,8 +1,8 @@ -/* { dg-do run { target { longdouble128 && lp64 } } } */ +/* { dg-do run { target { float128 && lp64 } } } */ union u1 { - long double ld; + _Float128 ld; unsigned long l[2]; }; @@ -13,7 +13,7 @@ unsigned long m() } [[gnu::noinline]] -long double f(void) +_Float128 f(void) { union u1 u; u.ld = __builtin_nanf128("");