blob: 2aefa3a93f1a5a8663ab4a0714d1e5817c0a62b3 [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 asinh.
///
//===----------------------------------------------------------------------===//
#include "exhaustive_test.h"
#include "src/__support/CPP/simd.h"
#include "src/math/asinhf.h"
#include "src/mathvec/asinhf.h"
using LlvmLibcAsinhfExhaustiveTest =
LlvmLibcUnaryOpExhaustiveMathvecTest<float, LIBC_NAMESPACE::asinhf,
LIBC_NAMESPACE::asinhf>;
// Tests all possible 32-bit input patterns
TEST_F(LlvmLibcAsinhfExhaustiveTest, EntireRange) { test_full_range_RN(); }