OSDN Git Service

Use _WIN32 rather than WIN32.
authorElliott Hughes <enh@google.com>
Thu, 20 Aug 2015 21:05:14 +0000 (14:05 -0700)
committerElliott Hughes <enh@google.com>
Thu, 20 Aug 2015 21:05:14 +0000 (14:05 -0700)
The latter should only exist if you #include <ole.h>.

Change-Id: I0fcaaddb79e1f7ae721d5c6d6eb5c67e2a41fd14

include/llvm/Analysis/TargetLibraryInfo.h

index 9579848..5b80649 100644 (file)
 #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 {