From: NAKAMURA Takumi Date: Wed, 23 Oct 2013 17:56:52 +0000 (+0000) Subject: llvm-c/Target.h: Tweak "inline" for msvc to use __inline instead. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=473436709959f09ed3ed415de0f17820d9188d09;p=oota-llvm.git llvm-c/Target.h: Tweak "inline" for msvc to use __inline instead. FIXME: I don't think it'd be smart. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193256 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm-c/Target.h b/include/llvm-c/Target.h index 46ee59abb05..71a24819eac 100644 --- a/include/llvm-c/Target.h +++ b/include/llvm-c/Target.h @@ -22,6 +22,10 @@ #include "llvm-c/Core.h" #include "llvm/Config/llvm-config.h" +#if defined(_MSC_VER) && !defined(inline) +#define inline __inline +#endif + #ifdef __cplusplus extern "C" { #endif