diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-05-12 17:33:00 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-05-12 17:33:00 +0000 |
commit | 1ac44dd087e1701ce8bb8eeed8b5a842ab9e394e (patch) | |
tree | 2e62b4997e437f726a0aea450f95c908d804ce87 /compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h | |
parent | 2adca6090f0e7b7f4840dff011430f4152ad0d8d (diff) | |
download | bcm5719-llvm-1ac44dd087e1701ce8bb8eeed8b5a842ab9e394e.tar.gz bcm5719-llvm-1ac44dd087e1701ce8bb8eeed8b5a842ab9e394e.zip |
[Sanitizer tests] Fix a comment that got out of sync with the #if
llvm-svn: 208602
Diffstat (limited to 'compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h')
-rw-r--r-- | compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h b/compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h index 433f8c184b7..ff2833f4483 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h @@ -19,9 +19,9 @@ #if defined(_MSC_VER) # define NOINLINE __declspec(noinline) -#else // defined(_WIN32) +#else // defined(_MSC_VER) # define NOINLINE __attribute__((noinline)) -#endif // defined(_WIN32) +#endif // defined(_MSC_VER) #if !defined(_MSC_VER) || defined(__clang__) # define UNUSED __attribute__((unused)) |