History log of /llvm-project/libc/test/src/math/smoke/TotalOrderTest.h (Results 1 – 3 of 3)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4, llvmorg-19.1.3, llvmorg-19.1.2
# f6b2a222 01-Oct-2024 Michael Jones <michaelrj@google.com>

[libc] Move struct Sign into LIBC_NAMESPACE (#110709)

The struct Sign should be in the correct namespace. Also update the
various tests that use it.


Revision tags: llvmorg-19.1.1, llvmorg-19.1.0, llvmorg-19.1.0-rc4, llvmorg-19.1.0-rc3, llvmorg-19.1.0-rc2, llvmorg-19.1.0-rc1
# 557a7b8a 24-Jul-2024 OverMighty <its.overmighty@gmail.com>

[libc][math][c23] Fix totalorder and totalordermag smoke tests (#100354)

FPBits::signaling_nan() defaults to setting the MSB of the payload to 1.
The tests also used signaling NaNs with a payload o

[libc][math][c23] Fix totalorder and totalordermag smoke tests (#100354)

FPBits::signaling_nan() defaults to setting the MSB of the payload to 1.
The tests also used signaling NaNs with a payload of 0x123. With
float16, the 1 in 0x123 aligns to the MSB of the payload, therefore
0x123 is greater than the default payload. However, that is not the case
with more precise floating-point types.

show more ...


Revision tags: llvmorg-20-init, llvmorg-18.1.8
# f5dcfb99 11-Jun-2024 OverMighty <its.overmighty@gmail.com>

[libc][math][c23] Add {totalorder,totalordermag}f16 C23 math functions (#95014)

Part of #93566.