summaryrefslogtreecommitdiff
path: root/compiler/optimizing/inliner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/optimizing/inliner.cc')
-rw-r--r--compiler/optimizing/inliner.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc
index 7068e8bf9b..e3172df7f9 100644
--- a/compiler/optimizing/inliner.cc
+++ b/compiler/optimizing/inliner.cc
@@ -1070,10 +1070,9 @@ bool HInliner::TryBuildAndInlineHelper(HInvoke* invoke_instruction,
compiler_driver_,
&inline_stats,
resolved_method->GetQuickenedInfo(),
- dex_cache,
- handles_);
+ dex_cache);
- if (builder.BuildGraph() != kAnalysisSuccess) {
+ if (builder.BuildGraph(handles_) != kAnalysisSuccess) {
VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
<< " could not be built, so cannot be inlined";
return false;