]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Revert pre-C++23 support for 16-bit float types [PR111060]
authorJonathan Wakely <jwakely@redhat.com>
Fri, 18 Aug 2023 12:10:15 +0000 (13:10 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 18 Aug 2023 21:50:48 +0000 (22:50 +0100)
In r14-3304-g1a566fddea212a and r14-3305-g6cf214b4fc97f5 I tried to
enable std::format for 16-bit float types before C++23. This causes
errors for targets where the types are defined but can't actually be
used, e.g. i686 without sse2.

Make the std::numeric_limits and std::formatter specializations for
_Float16 and __bfloat16_t depend on the __STDCPP_FLOAT16_T__ and
__STDCPP_BFLOAT16_T__ macros again, so they're only defined for C++23
when the type is fully supported. This is OK because the main point of
my earlier commits was to add better support for _Float32 and _Float64.
It seems fine for the new 16-bit types to only be supported for C++23,
as they were never present before GCC 13 anyway.

libstdc++-v3/ChangeLog:

PR target/111060
* include/std/format (formatter): Only define specializations
for 16-bit floating-point types for C++23.
* include/std/limits (numeric_limits): Likewise.

libstdc++-v3/include/std/format
libstdc++-v3/include/std/limits

index 648f847ad9692f1a84131dd63cc6089bfd287685..f3d9ae152f907a23b74230d3731084ad1faa4051 100644 (file)
@@ -2083,7 +2083,7 @@ namespace __format
     };
 #endif
 
-#if defined(__FLT16_DIG__)
+#ifdef __STDCPP_FLOAT16_T__
   // Reuse __formatter_fp<C>::format<float, Out> for _Float16.
   template<__format::__char _CharT>
     struct formatter<_Float16, _CharT>
@@ -2171,7 +2171,7 @@ namespace __format
     };
 #endif
 
-#if defined(__BFLT16_DIG__)
+#ifdef __STDCPP_BFLOAT16_T__
   // Reuse __formatter_fp<C>::format<float, Out> for bfloat16_t.
   template<__format::__char _CharT>
     struct formatter<__gnu_cxx::__bfloat16_t, _CharT>
index 7a59e7520ebca0f90a3f0b011ecc606475b2f13f..ec0b7a1ca7bf38b7440b6e94c692cd5937f1bf23 100644 (file)
@@ -1982,7 +1982,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        = round_to_nearest;                                             \
     };                                                                         \
 
-#ifdef __FLT16_DIG__
+#ifdef __STDCPP_FLOAT16_T__
 __glibcxx_float_n(16)
 #endif
 #ifdef __FLT32_DIG__
@@ -2002,7 +2002,7 @@ __glibcxx_float_n(128)
 # undef __max_digits10
 #endif
 
-#ifdef __BFLT16_DIG__
+#ifdef __STDCPP_BFLOAT16_T__
   __extension__
   template<>
     struct numeric_limits<__gnu_cxx::__bfloat16_t>
@@ -2079,7 +2079,7 @@ __glibcxx_float_n(128)
       static _GLIBCXX_USE_CONSTEXPR float_round_style round_style
        = round_to_nearest;
     };
-#endif
+#endif // __STDCPP_BFLOAT16_T__
 
 #if defined(_GLIBCXX_USE_FLOAT128)
 // We either need Q literal suffixes, or IEEE double.