Path: blob/main/system/lib/compiler-rt/lib/builtins/divti3.c
7088 views
//===-- divti3.c - Implement __divti3 -------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file implements __divti3 for the compiler_rt library.9//10//===----------------------------------------------------------------------===//1112#include "int_lib.h"1314#ifdef CRT_HAS_128BIT1516// Returns: a / b1718#define fixint_t ti_int19#define fixuint_t tu_int20#define COMPUTE_UDIV(a, b) __udivmodti4((a), (b), (tu_int *)0)21#include "int_div_impl.inc"2223COMPILER_RT_ABI ti_int __divti3(ti_int a, ti_int b) { return __divXi3(a, b); }2425#endif // CRT_HAS_128BIT262728