diff options
author | Aart Bik <ajcbik@google.com> | 2017-03-06 11:13:43 -0800 |
---|---|---|
committer | Aart Bik <ajcbik@google.com> | 2017-03-06 15:20:04 -0800 |
commit | 92685a8a56fba7191612cf210f9c667b5ceda2af (patch) | |
tree | 563009abe4387cb83c63320504148cedfc764bc3 /compiler/optimizing/loop_optimization_test.cc | |
parent | 5c90d0b0f332436f7ca5c028256bf5e91e9023d4 (diff) |
Pass driver to loop opt. Add new side_effects phase.
Rationale:
Break-out CL of ART Vectorizer: number 3.
The purpose is making the original CL smaller
and easier to review.
Bug: 34083438
Test: test-art-host
Change-Id: I7cece807ee4f5fcaeae41f1deed33ac263447b77
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 9a6b4935b2..5b9350689e 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_, iva_)) { + loop_opt_(new (&allocator_) HLoopOptimization(graph_, nullptr, iva_)) { BuildGraph(); } |