1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[PowerPC][NFC] Enable ADT BitVectorTest

Test on ppc64le passed.
This fix https://bugs.llvm.org/show_bug.cgi?id=42702

llvm-svn: 367713
This commit is contained in:
Jinsong Ji 2019-08-02 19:58:00 +00:00
parent c847808d77
commit 233eb03485

View File

@ -6,9 +6,6 @@
//
//===----------------------------------------------------------------------===//
// Some of these tests fail on PowerPC for unknown reasons.
#ifndef __ppc__
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/SmallBitVector.h"
#include "gtest/gtest.h"
@ -1153,4 +1150,3 @@ TYPED_TEST(BitVectorTest, PushBack) {
EXPECT_EQ(102U, Vec.count());
}
}
#endif