We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f8adc8 commit 736cc0cCopy full SHA for 736cc0c
libc/test/src/math/smoke/nanl_test.cpp
@@ -28,7 +28,7 @@ class LlvmLibcNanlTest : public LIBC_NAMESPACE::testing::Test {
28
long double result = LIBC_NAMESPACE::nanl(input_str);
29
auto actual_fp = LIBC_NAMESPACE::fputil::FPBits<long double>(result);
30
auto expected_fp = LIBC_NAMESPACE::fputil::FPBits<long double>(bits);
31
- EXPECT_EQ(actual_fp.bits, expected_fp.bits);
+ EXPECT_EQ(actual_fp.uintval(), expected_fp.uintval());
32
};
33
34
0 commit comments