forked from OSchip/llvm-project
[ASan] Follow-up fix: use #if SANITIZER_WINDOWS, not #ifdef
llvm-svn: 195625
This commit is contained in:
parent
25cc3c55cc
commit
0d419293e2
|
@ -18,7 +18,7 @@ namespace __sanitizer {
|
||||||
|
|
||||||
// Make the compiler think that something is going on there.
|
// Make the compiler think that something is going on there.
|
||||||
static inline void break_optimization(void *arg) {
|
static inline void break_optimization(void *arg) {
|
||||||
#ifdef SANITIZER_WINDOWS
|
#if SANITIZER_WINDOWS
|
||||||
// FIXME: make sure this is actually enough.
|
// FIXME: make sure this is actually enough.
|
||||||
__asm;
|
__asm;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue