From: Elliott Hughes Date: Thu, 20 Aug 2015 21:05:14 +0000 (-0700) Subject: Use _WIN32 rather than WIN32. X-Git-Tag: android-x86-7.1-r1~33^2^2 X-Git-Url: http://git.osdn.net/view?p=android-x86%2Fexternal-llvm.git;a=commitdiff_plain;h=9bcf966b859ab099863dc5d60dbda84f326be0a8 Use _WIN32 rather than WIN32. The latter should only exist if you #include . Change-Id: I0fcaaddb79e1f7ae721d5c6d6eb5c67e2a41fd14 --- diff --git a/include/llvm/Analysis/TargetLibraryInfo.h b/include/llvm/Analysis/TargetLibraryInfo.h index 95798481cbc..5b80649eb56 100644 --- a/include/llvm/Analysis/TargetLibraryInfo.h +++ b/include/llvm/Analysis/TargetLibraryInfo.h @@ -19,14 +19,14 @@ #include "llvm/Pass.h" // BEGIN ANDROID-SPECIFIC -#ifdef WIN32 +#ifdef _WIN32 #ifdef fseeko #undef fseeko #endif #ifdef ftello #undef ftello #endif -#endif // WIN32 +#endif // _WIN32 // END ANDROID-SPECIFIC namespace llvm {