From: Joseph Myers Date: Fri, 24 Nov 2017 21:42:55 +0000 (+0000) Subject: Define __STDC_WANT_IEC_60559_TYPES_EXT__ in tst-strtod-round-skeleton.c. X-Git-Tag: glibc-2.27~437 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46453c3cdad9575f264a49f003a2a9f2847708c8;p=thirdparty%2Fglibc.git Define __STDC_WANT_IEC_60559_TYPES_EXT__ in tst-strtod-round-skeleton.c. The tst-strtod-round-skeleton.c conditionals relating to handling of _Float64x require associated macros, which requires __STDC_WANT_IEC_60559_TYPES_EXT__ to be defined before is included if _Float64x is supported. This patch adds the necessary definition. Tested for x86_64, including in conjunction with _Float64x support patches. * stdlib/tst-strtod-round-skeleton.c (__STDC_WANT_IEC_60559_TYPES_EXT__): Define before including headers. --- diff --git a/ChangeLog b/ChangeLog index 2a65383f12f..be9ed44d832 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2017-11-24 Joseph Myers + * stdlib/tst-strtod-round-skeleton.c + (__STDC_WANT_IEC_60559_TYPES_EXT__): Define before including + headers. + * math/gen-tgmath-tests.py (Type.init_types): Pass suffix argument for combinations of long double with _Float64 and _Float64x. diff --git a/stdlib/tst-strtod-round-skeleton.c b/stdlib/tst-strtod-round-skeleton.c index 763c9ce983b..05d8a4c303d 100644 --- a/stdlib/tst-strtod-round-skeleton.c +++ b/stdlib/tst-strtod-round-skeleton.c @@ -20,6 +20,7 @@ /* Defining _LIBC_TEST ensures long double math functions are declared in the headers. */ #define _LIBC_TEST 1 +#define __STDC_WANT_IEC_60559_TYPES_EXT__ #include #include #include