From f0e8ffafb25946295cd407388fa6e46b2304689b Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 15 Dec 2023 17:37:27 +0000 Subject: [PATCH] Fix __float128 test case. --- test/git_issue_576.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/git_issue_576.cpp b/test/git_issue_576.cpp index 45773e91..e78623e5 100644 --- a/test/git_issue_576.cpp +++ b/test/git_issue_576.cpp @@ -97,9 +97,9 @@ void test() #ifdef BOOST_HAS_FLOAT128 if (std::numeric_limits::max_exponent < std::numeric_limits<__float128>::digits) { - test(static_cast<__float128>(i)); + test(static_cast<__float128>(i), big); for (int exp = -1; exp >= std::numeric_limits::min_exponent; --exp) - test(std::ldexp(static_cast<__float128>(i), exp), big); + test(ldexpq(static_cast<__float128>(i), exp), big); } #endif