[libc-commits] [PATCH] D105140: Modified and added floating properties to single, double, and quad precision floating point numbers.

Hedin GarcĂ­a via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Jun 29 12:51:50 PDT 2021


hedingarcia updated this revision to Diff 355338.
hedingarcia added a comment.

Fixed an assert diagnostic message.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D105140/new/

https://reviews.llvm.org/D105140

Files:
  libc/utils/FPUtil/FloatProperties.h


Index: libc/utils/FPUtil/FloatProperties.h
===================================================================
--- libc/utils/FPUtil/FloatProperties.h
+++ libc/utils/FPUtil/FloatProperties.h
@@ -151,7 +151,7 @@
 
 template <> struct FloatType<__uint128_t> {
   static_assert(sizeof(__uint128_t) == sizeof(long double),
-                "Unexpected size of 'double' type.");
+                "Unexpected size of 'long double' type.");
   typedef long double Type;
 };
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105140.355338.patch
Type: text/x-patch
Size: 469 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210629/e4f0277b/attachment.bin>


More information about the libc-commits mailing list