diff options
Diffstat (limited to 'unittests/ADT')
-rw-r--r-- | unittests/ADT/BitVectorTest.cpp | 2 | ||||
-rw-r--r-- | unittests/ADT/PackedVectorTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/unittests/ADT/BitVectorTest.cpp b/unittests/ADT/BitVectorTest.cpp index 4d3223e..d7cde89 100644 --- a/unittests/ADT/BitVectorTest.cpp +++ b/unittests/ADT/BitVectorTest.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// // Some of these tests fail on PowerPC for unknown reasons. -#if !defined(__ppc__) && !defined(__powerpc__) +#ifndef __ppc__ #include "llvm/ADT/BitVector.h" #include "llvm/ADT/SmallBitVector.h" diff --git a/unittests/ADT/PackedVectorTest.cpp b/unittests/ADT/PackedVectorTest.cpp index b6a7e58..55b5d8d 100644 --- a/unittests/ADT/PackedVectorTest.cpp +++ b/unittests/ADT/PackedVectorTest.cpp @@ -9,7 +9,7 @@ // BitVectorTest tests fail on PowerPC for unknown reasons, so disable this // as well since it depends on a BitVector. -#if !defined(__ppc__) && !defined(__powerpc__) +#ifndef __ppc__ #include "llvm/ADT/PackedVector.h" #include "gtest/gtest.h" |