blob: b9d9b7994212baddc6d7badffa5e06eafcb9124b [file] [log] [blame]
//===-- Implementation of f16divf 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/f16divf.h"
#include "src/__support/math/f16divf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float16, f16divf, (float x, float y)) {
return math::f16divf(x, y);
}
} // namespace LIBC_NAMESPACE_DECL