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

Timur Iskhodzhanov timurrrr at google.com
Mon May 12 10:33:00 PDT 2014


Author: timurrrr
Date: Mon May 12 12:33:00 2014
New Revision: 208602

URL: http://llvm.org/viewvc/llvm-project?rev=208602&view=rev
Log:
[Sanitizer tests] Fix a comment that got out of sync with the #if

Modified:
    compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_test_utils.h

Modified: compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_test_utils.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_test_utils.h?rev=208602&r1=208601&r2=208602&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_test_utils.h (original)
+++ compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_test_utils.h Mon May 12 12:33:00 2014
@@ -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))





More information about the llvm-commits mailing list