libstdc++: Support -mlong-double-64 on PPC
authorMatthias Kretz <kretz@kde.org>
Wed, 3 Feb 2021 15:49:29 +0000 (15:49 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 3 Feb 2021 15:49:29 +0000 (15:49 +0000)
libstdc++-v3/ChangeLog:

* include/experimental/bits/simd.h: Let __intrinsic_type<long
double, N> be valid if sizeof(long double) == sizeof(double) and
use a __vector double as member type.

libstdc++-v3/include/experimental/bits/simd.h

index c379721c7bec2c7f7602607bee33e8363f3274f3..477af86fd5e94b8e34ce11ba6cec2f7e80be3488 100644 (file)
@@ -2285,7 +2285,9 @@ template <typename _Tp, size_t _Bytes>
   struct __intrinsic_type<_Tp, _Bytes,
                          enable_if_t<__is_vectorizable_v<_Tp> && _Bytes <= 16>>
   {
-    static_assert(!is_same_v<_Tp, long double>,
+    static constexpr bool _S_is_ldouble = is_same_v<_Tp, long double>;
+    // allow _Tp == long double with -mlong-double-64
+    static_assert(!(_S_is_ldouble && sizeof(long double) > sizeof(double)),
                  "no __intrinsic_type support for long double on PPC");
 #ifndef __VSX__
     static_assert(!is_same_v<_Tp, double>,
@@ -2297,8 +2299,11 @@ template <typename _Tp, size_t _Bytes>
       "no __intrinsic_type support for integers larger than 4 Bytes "
       "on PPC w/o POWER8 vectors");
 #endif
-    using type = typename __intrinsic_type_impl<conditional_t<
-      is_floating_point_v<_Tp>, _Tp, __int_for_sizeof_t<_Tp>>>::type;
+    using type =
+      typename __intrinsic_type_impl<
+                conditional_t<is_floating_point_v<_Tp>,
+                              conditional_t<_S_is_ldouble, double, _Tp>,
+                              __int_for_sizeof_t<_Tp>>>::type;
   };
 #endif // __ALTIVEC__