summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/negti2.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
commit6e2bf8f2bbf04447d21e1f0e19102a21b9e97d74 (patch)
tree421b7cba89fa4067be822c32cffe692f12b9f4a3 /compiler-rt/lib/negti2.c
parent321916a76bd54ce781dbe995cf6ace220d97fc90 (diff)
downloadbcm5719-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/negti2.c')
-rw-r--r--compiler-rt/lib/negti2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/negti2.c b/compiler-rt/lib/negti2.c
index 774e8082945..f7e4ad3b94a 100644
--- a/compiler-rt/lib/negti2.c
+++ b/compiler-rt/lib/negti2.c
@@ -12,10 +12,10 @@
* ===----------------------------------------------------------------------===
*/
-#if __x86_64
-
#include "int_lib.h"
+#if __x86_64
+
/* Returns: -a */
ti_int
OpenPOWER on IntegriCloud