[ASan] Follow-up fix: use #if SANITIZER_WINDOWS, not #ifdef

llvm-svn: 195625
This commit is contained in:
Timur Iskhodzhanov 2013-11-25 07:56:05 +00:00
parent 25cc3c55cc
commit 0d419293e2
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ namespace __sanitizer {
// Make the compiler think that something is going on there.
static inline void break_optimization(void *arg) {
#ifdef SANITIZER_WINDOWS
#if SANITIZER_WINDOWS
// FIXME: make sure this is actually enough.
__asm;
#else