diff options
| author | 2015-12-14 05:47:32 -0800 | |
|---|---|---|
| committer | 2015-12-14 05:47:32 -0800 | |
| commit | ecfedf8a62d700cff3decc9bc30472f3cac38b43 (patch) | |
| tree | 55e2c4da6176348d8e20107eb7772bf9ec28a572 /compiler/optimizing/constant_folding_test.cc | |
| parent | f6082992319d3d71ff64411fb3083e4da8dd60cc (diff) | |
| parent | c57108d49e99f5da452b8356d491222a0fe539c8 (diff) | |
Merge "ART: Refactor SsaBuilder for more precise typing info" am: 795accfff0
am: c57108d49e
* commit 'c57108d49e99f5da452b8356d491222a0fe539c8':
ART: Refactor SsaBuilder for more precise typing info
Diffstat (limited to 'compiler/optimizing/constant_folding_test.cc')
| -rw-r--r-- | compiler/optimizing/constant_folding_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/constant_folding_test.cc b/compiler/optimizing/constant_folding_test.cc index e469c8d6d0..a8f65bf516 100644 --- a/compiler/optimizing/constant_folding_test.cc +++ b/compiler/optimizing/constant_folding_test.cc @@ -32,7 +32,7 @@ namespace art { /** * Fixture class for the constant folding and dce tests. */ -class ConstantFoldingTest : public testing::Test { +class ConstantFoldingTest : public CommonCompilerTest { public: ConstantFoldingTest() : pool_(), allocator_(&pool_) { graph_ = CreateGraph(&allocator_); @@ -56,7 +56,7 @@ class ConstantFoldingTest : public testing::Test { const std::string& expected_after_dce, std::function<void(HGraph*)> check_after_cf) { ASSERT_NE(graph_, nullptr); - graph_->TryBuildingSsa(); + TransformToSsa(graph_); StringPrettyPrinter printer_before(graph_); printer_before.VisitInsertionOrder(); |