diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-06-22 21:09:22 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-06-22 21:09:22 +0000 |
commit | 6e2bf8f2bbf04447d21e1f0e19102a21b9e97d74 (patch) | |
tree | 421b7cba89fa4067be822c32cffe692f12b9f4a3 /compiler-rt/lib/udivti3.c | |
parent | 321916a76bd54ce781dbe995cf6ace220d97fc90 (diff) | |
download | bcm5719-llvm-6e2bf8f2bbf04447d21e1f0e19102a21b9e97d74.tar.gz bcm5719-llvm-6e2bf8f2bbf04447d21e1f0e19102a21b9e97d74.zip |
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.
llvm-svn: 159034
Diffstat (limited to 'compiler-rt/lib/udivti3.c')
-rw-r--r-- | compiler-rt/lib/udivti3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/udivti3.c b/compiler-rt/lib/udivti3.c index 7405a0f9865..d9e1bb46f5c 100644 --- a/compiler-rt/lib/udivti3.c +++ b/compiler-rt/lib/udivti3.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 */ |