diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2016-10-05 16:03:30 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-10-05 16:03:30 +0000 |
commit | 4aa6a93c46a959df1ab71ee7a68ad345338046ef (patch) | |
tree | 30fe24096f6c3dcf3e0eecfb56a9372be49fef72 /compiler/optimizing/loop_optimization_test.cc | |
parent | 99ce62c3475765821024616b1223d37576e327dc (diff) | |
parent | 5ed20f90acd05e1f8697340f11113f0c61c22492 (diff) |
Merge "Make it possible to pass an arena allocator to HLoopOptimization."
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 4e007d4e9a..4d54afd14d 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_, iva_, &allocator_)) { BuildGraph(); } |