summaryrefslogtreecommitdiff
path: root/libc/test/src/__support/FPUtil/dyadic_float_test.cpp
AgeCommit message (Collapse)Author
2024-10-01[libc] Move struct Sign into LIBC_NAMESPACE (#110709)Michael Jones
The struct Sign should be in the correct namespace. Also update the various tests that use it.
2024-06-10[libc] Add WordTypeSelector<16> specialization (#94979)OverMighty
2024-04-06[libc][NFC] Rename `UInt.h` to `big_int.h` and `UInt128.h` to `uint128.h` ↵Guillaume Chatelet
for consistency (#87808)
2024-03-20[libc][NFC] Move `Sign` type to separate header (#85930)Guillaume Chatelet
2024-02-14[libc][math] Add C23 ldexpf128 math function and fix DyadicFloat conversions ↵lntue
for subnormal ranges and 80-bit floating points. (#81780)
2024-01-19[libc][NFC] Fix "type qualifiers ignored on cast result type" GCC warning ↵Guillaume Chatelet
(#78509) GCC complains about "type qualifiers ignored on cast result type". Upon investigation the correct fix was to remove all `volatile` and use the `-frounding-math` option.
2024-01-18[libc][NFC] Use the Sign type for DyadicFloat (#78577)Guillaume Chatelet
2023-09-26[libc] Mass replace enclosing namespace (#67032)Guillaume Chatelet
This is step 4 of https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079
2023-02-07[libc][NFC] Move UnitTest and IntegrationTest to the 'test' directory.Siva Chandra Reddy
This part of the effort to make all test related pieces into the `test` directory. This helps is excluding test related pieces in a straight forward manner if LLVM_INCLUDE_TESTS is OFF. Future patches will also move the MPFR wrapper and testutils into the 'test' directory.
2022-12-14[libc] Implement a high-precision floating point class.Tue Ly
Implement a high-precision floating point class using UInt<> as its mantissa. This will be used in accurate pass for double precision math functions. Reviewed By: sivachandra Differential Revision: https://reviews.llvm.org/D136799