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/floattidf.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/floattidf.c')
| -rw-r--r-- | compiler-rt/lib/floattidf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/floattidf.c b/compiler-rt/lib/floattidf.c index 3cafea8a2e7..77749f8d340 100644 --- a/compiler-rt/lib/floattidf.c +++ b/compiler-rt/lib/floattidf.c @@ -12,10 +12,10 @@ * ===----------------------------------------------------------------------=== */ -#if __x86_64 - #include "int_lib.h" +#if __x86_64 + /* Returns: convert a to a double, rounding toward even.*/ /* Assumption: double is a IEEE 64 bit floating point type |

