summaryrefslogtreecommitdiff
path: root/lib/asan/tests/asan_test.cc
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2014-10-14 12:32:47 +0000
committerRenato Golin <renato.golin@linaro.org>2014-10-14 12:32:47 +0000
commitd20066a6cca80b776e8385bd7ac192f485a5dce5 (patch)
treec259d00c4826538c34a6d02af3400566ef859d67 /lib/asan/tests/asan_test.cc
parentfa31ed4e4e05b10796f6b44aaaf30163c708f61f (diff)
Fix silly commit to disable test on ARM
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@219681 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/tests/asan_test.cc')
-rw-r--r--lib/asan/tests/asan_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/tests/asan_test.cc b/lib/asan/tests/asan_test.cc
index 85eb97e52..adf39486c 100644
--- a/lib/asan/tests/asan_test.cc
+++ b/lib/asan/tests/asan_test.cc
@@ -602,7 +602,7 @@ NOINLINE void SigLongJmpFunc1(sigjmp_buf buf) {
siglongjmp(buf, 1);
}
-#if !defined(__ANDROID__) && !defined(__arm__) \
+#if !defined(__ANDROID__) && !defined(__arm__) && \
!defined(__powerpc64__) && !defined(__powerpc__)
// Does not work on Power and ARM:
// https://code.google.com/p/address-sanitizer/issues/detail?id=185