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/floatuntidf.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/floatuntidf.c')
-rw-r--r-- | compiler-rt/lib/floatuntidf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/floatuntidf.c b/compiler-rt/lib/floatuntidf.c index d0889a0744f..4c1d3289f51 100644 --- a/compiler-rt/lib/floatuntidf.c +++ b/compiler-rt/lib/floatuntidf.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 |