summaryrefslogtreecommitdiff
path: root/lib/modti3.c
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-06-22 21:09:22 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-06-22 21:09:22 +0000
commit7f2d7c75e713d778106d01a54e7aef40227bbf2d (patch)
treeb4e11b8570f075741aa7cb7bb0a2cfdfef5a9283 /lib/modti3.c
parent0193b74976719b8aea4cb8874ba36b75836a8d6e (diff)
downloadcompiler-rt-7f2d7c75e713d778106d01a54e7aef40227bbf2d.tar.gz
compiler-rt-7f2d7c75e713d778106d01a54e7aef40227bbf2d.tar.bz2
compiler-rt-7f2d7c75e713d778106d01a54e7aef40227bbf2d.tar.xz
Mechanical change to sink a #ifdef guard for a platform below the
include of int_lib.h. The purpose of this change is to make the C code conform to the pedantic rules of C99 -- an empty translation unit is not valid. It should have absolutely no functional impact, and changes nothing about the built libraries. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@159034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/modti3.c')
-rw-r--r--lib/modti3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/modti3.c b/lib/modti3.c
index dbe5e949..752202d4 100644
--- a/lib/modti3.c
+++ b/lib/modti3.c
@@ -12,10 +12,10 @@
* ===----------------------------------------------------------------------===
*/
-#if __x86_64
-
#include "int_lib.h"
+#if __x86_64
+
tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
/*Returns: a % b */