[libc-commits] [libc] [libc] Stub handling for the PPC double	double type (PR #136614)
    via libc-commits 
    libc-commits at lists.llvm.org
       
    Mon Apr 21 15:07:44 PDT 2025
    
    
  
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions h -- libc/src/__support/FPUtil/FPBits.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/libc/src/__support/FPUtil/FPBits.h b/libc/src/__support/FPUtil/FPBits.h
index 24f85897f..09f50c9d0 100644
--- a/libc/src/__support/FPUtil/FPBits.h
+++ b/libc/src/__support/FPUtil/FPBits.h
@@ -830,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 internal::FPLayout<get_fp_type<T>()>::StorageType;
+  using StorageType =
+      typename internal::FPLayout<get_fp_type<T>()>::StorageType;
 
   // Constructors.
   LIBC_INLINE constexpr FPBits() = default;
``````````
</details>
https://github.com/llvm/llvm-project/pull/136614
    
    
More information about the libc-commits
mailing list