diff options
| author | 2015-12-14 05:45:01 -0800 | |
|---|---|---|
| committer | 2015-12-14 05:45:01 -0800 | |
| commit | c57108d49e99f5da452b8356d491222a0fe539c8 (patch) | |
| tree | 9f4e4ffb5fae25c4f14059fd1d772726e9d96170 /compiler/optimizing/constant_folding_test.cc | |
| parent | d3523f2b461a0051e511a22c731bfb388135a836 (diff) | |
| parent | 795accfff05abfb69f54003ee3f096ef3ff6f1e4 (diff) | |
Merge "ART: Refactor SsaBuilder for more precise typing info"
am: 795accfff0
* commit '795accfff05abfb69f54003ee3f096ef3ff6f1e4':
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(); |