[libc-commits] [libc] [libc][math][c23] Fix X86_Binary80 special cases for canonicalize functions. (PR #86924)
Shourya Goel via libc-commits
libc-commits at lists.llvm.org
Thu Mar 28 11:59:57 PDT 2024
================
@@ -135,44 +135,38 @@ class CanonicalizeTest : public LIBC_NAMESPACE::testing::Test {
// Exponent | Significand | Meaning
// | Bit 63 | Bits 62-0 |
- // All Other | Zero | Anything | Unnormal, Value =
- // Values | | | (−1)**s × m × 2**−16382
+ // All Other | Zero | Anything | Unnormal, Value = SNaN
+ // Values | | |
- FPBits test5_1(UInt128(0x0000000000000001));
----------------
Sh0g0-1758 wrote:
that test is updated to this now:
```
FPBits test5_1((UInt128(0x0040) << 64) + UInt128(0x0000000000000001));
```
Should I update all the tests?
https://github.com/llvm/llvm-project/pull/86924
More information about the libc-commits
mailing list