summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/lsan/lsan_common.h
diff options
context:
space:
mode:
authorAlex Shlyapnikov <alekseys@google.com>2017-04-21 00:36:29 +0000
committerAlex Shlyapnikov <alekseys@google.com>2017-04-21 00:36:29 +0000
commitc426666b4d73c21083f6d97905a8bbbda962459f (patch)
tree396f356947b020a24761e1c3881a1c894d0efb8b /compiler-rt/lib/lsan/lsan_common.h
parente52caddae83aa2dd0ac0aa3a7f5a8bef924ae848 (diff)
downloadbcm5719-llvm-c426666b4d73c21083f6d97905a8bbbda962459f.tar.gz
bcm5719-llvm-c426666b4d73c21083f6d97905a8bbbda962459f.zip
Disable LSan on ppc64, some tests are failing.
llvm-svn: 300933
Diffstat (limited to 'compiler-rt/lib/lsan/lsan_common.h')
-rw-r--r--compiler-rt/lib/lsan/lsan_common.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/lib/lsan/lsan_common.h b/compiler-rt/lib/lsan/lsan_common.h
index beb31d6f40e..121b9c08298 100644
--- a/compiler-rt/lib/lsan/lsan_common.h
+++ b/compiler-rt/lib/lsan/lsan_common.h
@@ -32,8 +32,7 @@
// new architecture inside sanitizer library.
#if (SANITIZER_LINUX && !SANITIZER_ANDROID || SANITIZER_MAC) && \
(SANITIZER_WORDSIZE == 64) && \
- (defined(__x86_64__) || defined(__mips64) || defined(__aarch64__) || \
- defined(__powerpc64__))
+ (defined(__x86_64__) || defined(__mips64) || defined(__aarch64__))
#define CAN_SANITIZE_LEAKS 1
#elif defined(__i386__) && \
(SANITIZER_LINUX && !SANITIZER_ANDROID || SANITIZER_MAC)
OpenPOWER on IntegriCloud