From 6e2bf8f2bbf04447d21e1f0e19102a21b9e97d74 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Fri, 22 Jun 2012 21:09:22 +0000 Subject: 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 --- compiler-rt/lib/ctzti2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler-rt/lib/ctzti2.c') diff --git a/compiler-rt/lib/ctzti2.c b/compiler-rt/lib/ctzti2.c index 1c9508fd552..66dc01b7ad3 100644 --- a/compiler-rt/lib/ctzti2.c +++ b/compiler-rt/lib/ctzti2.c @@ -12,10 +12,10 @@ * ===----------------------------------------------------------------------=== */ -#if __x86_64 - #include "int_lib.h" +#if __x86_64 + /* Returns: the number of trailing 0-bits */ /* Precondition: a != 0 */ -- cgit v1.2.3