[libc-commits] [libc] [libc][math] Add C23 math function frexpf128. (PR #81337)
Nick Desaulniers via libc-commits
libc-commits at lists.llvm.org
Fri Feb 9 15:27:02 PST 2024
================
@@ -93,4 +88,5 @@ template <typename T> class FrexpTest : public LIBC_NAMESPACE::testing::Test {
using LlvmLibcFrexpTest = FrexpTest<T>; \
TEST_F(LlvmLibcFrexpTest, SpecialNumbers) { testSpecialNumbers(&func); } \
TEST_F(LlvmLibcFrexpTest, PowersOfTwo) { testPowersOfTwo(&func); } \
- TEST_F(LlvmLibcFrexpTest, SomeIntegers) { testSomeIntegers(&func); }
+ TEST_F(LlvmLibcFrexpTest, SomeIntegers) { testSomeIntegers(&func); } \
+ static_assert(true, "Require semicolon.")
----------------
nickdesaulniers wrote:
lol
https://github.com/llvm/llvm-project/pull/81337
More information about the libc-commits
mailing list