[compiler-rt] r204589 - [asan] Fix a comment.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Mon Mar 24 01:27:33 PDT 2014


Author: eugenis
Date: Mon Mar 24 03:27:31 2014
New Revision: 204589

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

Modified:
    compiler-rt/trunk/lib/asan/tests/asan_test.cc

Modified: compiler-rt/trunk/lib/asan/tests/asan_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/tests/asan_test.cc?rev=204589&r1=204588&r2=204589&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/tests/asan_test.cc (original)
+++ compiler-rt/trunk/lib/asan/tests/asan_test.cc Mon Mar 24 03:27:31 2014
@@ -565,7 +565,7 @@ NOINLINE void TouchStackFunc() {
     A[i] = i*i;
 }
 
-// Test that we handle longjmp and do not report fals positives on stack.
+// Test that we handle longjmp and do not report false positives on stack.
 TEST(AddressSanitizer, LongJmpTest) {
   static jmp_buf buf;
   if (!setjmp(buf)) {
@@ -587,7 +587,8 @@ TEST(AddressSanitizer, BuiltinLongJmpTes
     TouchStackFunc();
   }
 }
-#endif  // not defined(__ANDROID__)
+#endif  // !defined(__ANDROID__) && !defined(__powerpc64__) &&
+        // !defined(__powerpc__)
 
 TEST(AddressSanitizer, UnderscopeLongJmpTest) {
   static jmp_buf buf;





More information about the llvm-commits mailing list