Fix silly commit to disable test on ARM

llvm-svn: 219681
This commit is contained in:
Renato Golin 2014-10-14 12:32:47 +00:00
parent 3743568735
commit 8fcae0b35e
1 changed files with 1 additions and 1 deletions

View File

@ -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