diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test-support.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/libm-test-support.h b/math/libm-test-support.h index 24e3cceec2..44716d0670 100644 --- a/math/libm-test-support.h +++ b/math/libm-test-support.h @@ -118,7 +118,8 @@ extern const char doc[]; /* On some architectures, glibc can be built with compilers that do not have suitable built-in functions for setting the payload of a _Float128 NaN. */ -#if (defined __x86_64__ || defined __i386__) && !__GNUC_PREREQ (7, 0) +#if ((defined __x86_64__ || defined __i386__ || defined __ia64__) \ + && !__GNUC_PREREQ (7, 0)) # define XFAIL_FLOAT128_PAYLOAD (TEST_COND_binary128 ? XFAIL_TEST : 0) #else # define XFAIL_FLOAT128_PAYLOAD 0 |