[compiler-rt] r217869 - [asan] Fix a comment in a test.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Tue Sep 16 05:01:02 PDT 2014


Author: eugenis
Date: Tue Sep 16 07:01:01 2014
New Revision: 217869

URL: http://llvm.org/viewvc/llvm-project?rev=217869&view=rev
Log:
[asan] Fix a comment in a test.

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/shared-lib-test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/shared-lib-test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/shared-lib-test.cc?rev=217869&r1=217868&r2=217869&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/shared-lib-test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/shared-lib-test.cc Tue Sep 16 07:01:01 2014
@@ -38,7 +38,7 @@ int main(int argc, char *argv[]) {
   // CHECK: {{    #1 0x.* in main .*shared-lib-test.cc:}}[[@LINE-4]]
   return 0;
 }
-#else  // SHARED_LIBS
+#else  // SHARED_LIB
 #include <stdio.h>
 #include <string.h>
 
@@ -54,4 +54,4 @@ extern "C"
 void inc2(int *a, int index) {
   a[index]++;
 }
-#endif  // SHARED_LIBS
+#endif  // SHARED_LIB





More information about the llvm-commits mailing list