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