//===-- Exhaustive test for sinf ------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "src/__support/FPUtil/FPBits.h" #include "src/__support/FPUtil/TestHelpers.h" #include "src/math/sinf.h" #include "utils/MPFRWrapper/MPFRUtils.h" #include using FPBits = __llvm_libc::fputil::FPBits; namespace mpfr = __llvm_libc::testing::mpfr; TEST(LlvmLibcsinffExhaustiveTest, AllValues) { uint32_t bits = 0; do { FPBits xbits(bits); float x = float(xbits); ASSERT_MPFR_MATCH(mpfr::Operation::Sin, x, __llvm_libc::sinf(x), 1.0); } while (bits++ < 0xffff'ffffU); }