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

Move init code in AArch64SelectionDAGTest to SetUpTestCase (NFC)

llvm-svn: 341574
This commit is contained in:
Scott Linder 2018-09-06 18:40:35 +00:00
parent 1d8b300a4a
commit da7bdb784d

View File

@ -22,13 +22,13 @@ using namespace llvm;
namespace {
void initLLVM() {
InitializeAllTargets();
InitializeAllTargetMCs();
}
class AArch64SelectionDAGTest : public testing::Test {
protected:
static void SetUpTestCase() {
InitializeAllTargets();
InitializeAllTargetMCs();
}
void SetUp() override {
StringRef Assembly = "define void @f() { ret void }";
@ -160,9 +160,3 @@ TEST_F(AArch64SelectionDAGTest, SimplifyDemandedVectorElts_EXTRACT_SUBVECTOR) {
}
} // end anonymous namespace
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
initLLVM();
return RUN_ALL_TESTS();
}