From: Galina Kistanova Date: Fri, 20 Jul 2012 21:30:52 +0000 (+0000) Subject: Fix few warnings. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=428ff6a6445ac1a0d263776cb0301f77f1454286;p=oota-llvm.git Fix few warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160576 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Compiler.h b/include/llvm/Support/Compiler.h index 5564db79c21..f654f327a92 100644 --- a/include/llvm/Support/Compiler.h +++ b/include/llvm/Support/Compiler.h @@ -121,7 +121,7 @@ // 3.4 supported this but is buggy in various cases and produces unimplemented // errors, just use it in GCC 4.0 and later. #if __GNUC__ > 3 -#define LLVM_ATTRIBUTE_ALWAYS_INLINE __attribute__((always_inline)) +#define LLVM_ATTRIBUTE_ALWAYS_INLINE inline __attribute__((always_inline)) #elif defined(_MSC_VER) #define LLVM_ATTRIBUTE_ALWAYS_INLINE __forceinline #else