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