]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Disable std::format of _Float128 if std::to_chars is innaccurate
authorJonathan Wakely <jwakely@redhat.com>
Tue, 15 Nov 2022 15:31:17 +0000 (15:31 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 16 Nov 2022 20:52:03 +0000 (20:52 +0000)
This restricts std::format support for _Float128 (and __float128) to
targets where glibc provides __strfromf128 and so can give correct
output.

libstdc++-v3/ChangeLog:

* include/std/format [__FLT128_DIG__] (_GLIBCXX_FORMAT_F128):
Only support formatting _Float128 when glibc provides the
functionality needed for accurate std::to_chars.

libstdc++-v3/include/std/format

index 204a1710aca800f1ca287332e9b7753eb0dc6c81..fb29f7e783566a7a91f92351371a5cecead25429 100644 (file)
@@ -1235,13 +1235,13 @@ namespace __format
   using __float128_t = long double;
 # define _GLIBCXX_FORMAT_F128 1
 
-#elif __FLT128_DIG__ && defined(__GLIBC_PREREQ) // see floating_to_chars.cc
+#elif __FLT128_DIG__ && defined(_GLIBCXX_HAVE_FLOAT128_MATH)
 
   // Format 128-bit floating-point types using _Float128.
   using __float128_t = _Float128;
 # define _GLIBCXX_FORMAT_F128 2
 
-# if __cplusplus == 202002L || !defined(_GLIBCXX_HAVE_FLOAT128_MATH)
+# if __cplusplus == 202002L
   // These overloads exist in the library, but are not declared for C++20.
   // Make them available as std::__format::to_chars.
   to_chars_result