blob: 785da055ccbe7479511f0fe33e9b3018dbb0bc92 [file] [log] [blame]
Daniel Dunbarb3a69012009-06-26 16:47:03 +00001//===-- udivti3.c - Implement __udivti3 -----------------------------------===//
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 __udivti3 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__udivti3(tu_int a, tu_int b)
24{
25 return __udivmodti4(a, b, 0);
26}
27
28#endif