[libc-commits] [libc] [libc] Stub handling for the PPC double double type (PR #136614)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Tue Apr 22 13:31:28 PDT 2025
================
@@ -818,7 +830,8 @@ struct FPBits final : public internal::FPRepImpl<get_fp_type<T>(), FPBits<T>> {
static_assert(cpp::is_floating_point_v<T>,
"FPBits instantiated with invalid type.");
using UP = internal::FPRepImpl<get_fp_type<T>(), FPBits<T>>;
- using StorageType = typename UP::StorageType;
+ using StorageType =
+ typename internal::FPLayout<get_fp_type<T>()>::StorageType;
----------------
michaelrj-google wrote:
That's fair. In that case, I'd say file a bug, add a TODO, and I'll approve this so we can move on.
https://github.com/llvm/llvm-project/pull/136614
More information about the libc-commits
mailing list