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