1276789Sdim/* ===-- umoddi3.c - Implement __umoddi3 -----------------------------------===
2276789Sdim *
3276789Sdim *                    The LLVM Compiler Infrastructure
4276789Sdim *
5276789Sdim * This file is dual licensed under the MIT and the University of Illinois Open
6276789Sdim * Source Licenses. See LICENSE.TXT for details.
7276789Sdim *
8276789Sdim * ===----------------------------------------------------------------------===
9276789Sdim *
10276789Sdim * This file implements __umoddi3 for the compiler_rt library.
11276789Sdim *
12276789Sdim * ===----------------------------------------------------------------------===
13276789Sdim */
14276789Sdim
15276789Sdim#include "int_lib.h"
16276789Sdim
17276789Sdim/* Returns: a % b */
18276789Sdim
19276789SdimCOMPILER_RT_ABI du_int
20276789Sdim__umoddi3(du_int a, du_int b)
21276789Sdim{
22276789Sdim    du_int r;
23276789Sdim    __udivmoddi4(a, b, &r);
24276789Sdim    return r;
25276789Sdim}
26