| Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame^] | 1 | //===-- 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 | |
| 18 | tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem); |
| 19 | |
| 20 | // Returns: a % b |
| 21 | |
| 22 | tu_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 |