blob: 5be207e6041d846fd8e45a4e7e44cd0cfdc0fd91 [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
/// Implementation of the single-precision SIMD asinh vector function.
///
//===----------------------------------------------------------------------===//
#include "src/mathvec/asinhf.h"
#include "src/__support/mathvec/asinhf.h"
#include "src/mathvec/abi_prefix.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(cpp::simd<float>, asinhf, (cpp::simd<float> x),
LIBC_VFABI_FLOAT_SYMBOL(asinhf)) {
return mathvec::asinhf(x);
}
} // namespace LIBC_NAMESPACE_DECL