blob: b12f5096db487575e164fc0a55fc704f95bbafd6 [file]
//===-- Implementation of fromfpxf 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/fromfpxf.h"
#include "src/__support/math/fromfpxf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, fromfpxf, (float x, int rnd, unsigned int width)) {
return math::fromfpxf(x, rnd, width);
}
} // namespace LIBC_NAMESPACE_DECL