[libc] fix strtofloat test with 128 bit floats
authorMichael Jones <michaelrj@google.com>
Tue, 28 Feb 2023 18:58:02 +0000 (10:58 -0800)
committerMichael Jones <michaelrj@google.com>
Tue, 28 Feb 2023 18:59:03 +0000 (10:59 -0800)
Differential Revision: https://reviews.llvm.org/D144991

libc/test/src/__support/str_to_float_test.cpp

index df2a8a4..b5bb3b9 100644 (file)
@@ -349,7 +349,7 @@ TEST_F(LlvmLibcStrToFloatTest, EiselLemireFloat128Fallback) {
   ASSERT_FALSE(
       __llvm_libc::internal::eisel_lemire<long double>(
           {(UInt128(0x5ce0e9a56015fec5) << 64) + UInt128(0xaadfa328ae39b333),
-           1})
+           1})
           .has_value());
 }
 #endif