From 9bcf966b859ab099863dc5d60dbda84f326be0a8 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 20 Aug 2015 14:05:14 -0700 Subject: [PATCH] Use _WIN32 rather than WIN32. The latter should only exist if you #include . Change-Id: I0fcaaddb79e1f7ae721d5c6d6eb5c67e2a41fd14 --- include/llvm/Analysis/TargetLibraryInfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.11.0