blob: 57b09efa3b0f4955b33452178df92bf6330b363f [file] [log] [blame]
Daniel Dunbarb3a69012009-06-26 16:47:03 +00001//===-- umodti3.c - Implement __umodti3 -----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements __umodti3 for the compiler_rt library.
11//
12//===----------------------------------------------------------------------===//
13
14#if __x86_64
15
16#include "int_lib.h"
17
18tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
19
20// Returns: a % b
21
22tu_int
23__umodti3(tu_int a, tu_int b)
24{
25 tu_int r;
26 __udivmodti4(a, b, &r);
27 return r;
28}
29
30#endif