blob: acaeef0c6ef550dd14319b4bd06fa749aefd2240 [file] [log] [blame] [edit]
//===-- Implementation for asinbf16(x) function ---------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
#include "src/math/asinbf16.h"
#include "src/__support/math/asinbf16.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(bfloat16, asinbf16, (bfloat16 x)) {
return math::asinbf16(x);
}
} // namespace LIBC_NAMESPACE_DECL