blob: 7ac59a0eb1184a59df78d3bcb326cbe771a9732a [file]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file contains exhaustive tests for single-precision SIMD asin.
///
//===----------------------------------------------------------------------===//
#include "exhaustive_test.h"
#include "src/__support/CPP/simd.h"
#include "src/math/asinf.h"
#include "src/mathvec/asinf.h"
using LlvmLibcAsinfExhaustiveTest =
LlvmLibcUnaryOpExhaustiveMathvecTest<float, LIBC_NAMESPACE::asinf,
LIBC_NAMESPACE::asinf>;
// Tests all possible 32-bit input patterns
TEST_F(LlvmLibcAsinfExhaustiveTest, EntireRange) { test_full_range_RN(); }