diff options
Diffstat (limited to 'compiler/optimizing/graph_checker_test.cc')
| -rw-r--r-- | compiler/optimizing/graph_checker_test.cc | 10 | 
1 files changed, 4 insertions, 6 deletions
diff --git a/compiler/optimizing/graph_checker_test.cc b/compiler/optimizing/graph_checker_test.cc index fee56c7f9e..d10df4ce3f 100644 --- a/compiler/optimizing/graph_checker_test.cc +++ b/compiler/optimizing/graph_checker_test.cc @@ -17,8 +17,6 @@  #include "graph_checker.h"  #include "optimizing_unit_test.h" -#include "gtest/gtest.h" -  namespace art {  /** @@ -43,7 +41,6 @@ HGraph* CreateSimpleCFG(ArenaAllocator* allocator) {    return graph;  } -  static void TestCode(const uint16_t* data) {    ArenaPool pool;    ArenaAllocator allocator(&pool); @@ -61,8 +58,7 @@ static void TestCodeSSA(const uint16_t* data) {    HGraph* graph = CreateCFG(&allocator, data);    ASSERT_NE(graph, nullptr); -  graph->BuildDominatorTree(); -  graph->TransformToSsa(); +  TransformToSsa(graph);    SSAChecker ssa_checker(graph);    ssa_checker.Run(); @@ -145,7 +141,9 @@ TEST(GraphChecker, BlockEndingWithNonBranchInstruction) {    ASSERT_FALSE(graph_checker.IsValid());  } -TEST(SSAChecker, SSAPhi) { +class SSACheckerTest : public CommonCompilerTest {}; + +TEST_F(SSACheckerTest, SSAPhi) {    // This code creates one Phi function during the conversion to SSA form.    const uint16_t data[] = ONE_REGISTER_CODE_ITEM(      Instruction::CONST_4 | 0 | 0,  |