[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:03 PST 2023
michaelrj created this revision.
Herald added subscribers: libc-commits, ecnelises, tschuett.
Herald added projects: libc-project, All.
michaelrj requested review of this revision.
Repository:
rG LLVM Github Monorepo
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.501230.patch
Type: text/x-patch
Size: 465 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230228/ef7cfe19/attachment.bin>
More information about the libc-commits
mailing list