blob: 0bda6844359744e0327bfb3b0146c4f557d43f04 [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 asinpi vector function.
///
//===----------------------------------------------------------------------===//
#include "src/mathvec/asinpif.h"
#include "src/__support/mathvec/asinpif.h"
#include "src/mathvec/abi_prefix.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(cpp::simd<float>, asinpif, (cpp::simd<float> x),
LIBC_VFABI_FLOAT_SYMBOL(asinpif)) {
return mathvec::asinpif(x);
}
} // namespace LIBC_NAMESPACE_DECL