1 //===-- Unittests for ldexpl ----------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "LdExpTest.h" 10 11 #include "include/math.h" 12 #include "src/math/ldexpl.h" 13 #include "utils/CPP/Functional.h" 14 #include "utils/FPUtil/FPBits.h" 15 #include "utils/FPUtil/ManipulationFunctions.h" 16 #include "utils/FPUtil/TestHelpers.h" 17 #include "utils/UnitTest/Test.h" 18 19 #include <limits.h> 20 21 LIST_LDEXP_TESTS(long double, __llvm_libc::ldexpl) 22