[Sanitizer tests] Fix a comment that got out of sync with the #if

llvm-svn: 208602
This commit is contained in:
Timur Iskhodzhanov 2014-05-12 17:33:00 +00:00
parent 2adca6090f
commit 1ac44dd087
1 changed files with 2 additions and 2 deletions

View File

@ -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))