[libc-commits] [PATCH] D144991: [libc] fix strtofloat test with 128 bit floats

Michael Jones via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Feb 28 10:59:17 PST 2023


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2dd527b6f820: [libc] fix strtofloat test with 128 bit floats (authored by michaelrj).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D144991

Files:
  libc/test/src/__support/str_to_float_test.cpp


Index: libc/test/src/__support/str_to_float_test.cpp
===================================================================
--- libc/test/src/__support/str_to_float_test.cpp
+++ libc/test/src/__support/str_to_float_test.cpp
@@ -349,7 +349,7 @@
   ASSERT_FALSE(
       __llvm_libc::internal::eisel_lemire<long double>(
           {(UInt128(0x5ce0e9a56015fec5) << 64) + UInt128(0xaadfa328ae39b333),
-           1}, )
+           1})
           .has_value());
 }
 #endif


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144991.501231.patch
Type: text/x-patch
Size: 465 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230228/472e4f84/attachment.bin>


More information about the libc-commits mailing list