blob: 4d913ecb4c2713557a6121754cf4e41661de87d3 [file] [log] [blame] [edit]
//===-- Implementation of bf16div 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/bf16div.h"
#include "src/__support/math/bf16div.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(bfloat16, bf16div, (double x, double y)) {
return math::bf16div(x, y);
}
} // namespace LIBC_NAMESPACE_DECL