blob: 863f40c060cd78c149da0a73a8c77807810ed87c [file]
//===-- Implementation of rdivi 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 "rdivi.h"
#include "src/__support/common.h"
#include "src/__support/fixed_point/fx_bits.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(fract, rdivi, (int n, int d)) {
return fixed_point::fxdivi<fract, int>(n, d);
}
} // namespace LIBC_NAMESPACE_DECL