diff options
author | Aart Bik <ajcbik@google.com> | 2017-09-06 15:53:17 -0700 |
---|---|---|
committer | Aart Bik <ajcbik@google.com> | 2017-09-06 15:53:17 -0700 |
commit | b92cc33a7a6a827da577627dc274440ac29652a8 (patch) | |
tree | 9fbc71433d4ea89be61aec6de0d33d142c11f039 /compiler/optimizing/loop_optimization_test.cc | |
parent | f56311a966a9e8e476287cd47d615a91a83c1d04 (diff) |
Pass stats into the loop optimization phase.
Test: market scan.
Change-Id: I58b23b8d254883f30619ea3602d34bf93618d432
Diffstat (limited to 'compiler/optimizing/loop_optimization_test.cc')
-rw-r--r-- | compiler/optimizing/loop_optimization_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/loop_optimization_test.cc b/compiler/optimizing/loop_optimization_test.cc index b5b03d8f26..1c5603d00f 100644 --- a/compiler/optimizing/loop_optimization_test.cc +++ b/compiler/optimizing/loop_optimization_test.cc @@ -31,7 +31,7 @@ class LoopOptimizationTest : public CommonCompilerTest { allocator_(&pool_), graph_(CreateGraph(&allocator_)), iva_(new (&allocator_) HInductionVarAnalysis(graph_)), - loop_opt_(new (&allocator_) HLoopOptimization(graph_, nullptr, iva_)) { + loop_opt_(new (&allocator_) HLoopOptimization(graph_, nullptr, iva_, nullptr)) { BuildGraph(); } |