diff options
Diffstat (limited to 'compiler/optimizing/inliner.cc')
-rw-r--r-- | compiler/optimizing/inliner.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc index 9ef5ec31d1..15155751a7 100644 --- a/compiler/optimizing/inliner.cc +++ b/compiler/optimizing/inliner.cc @@ -1814,7 +1814,8 @@ bool HInliner::TryBuildAndInlineHelper(HInvoke* invoke_instruction, callee_dead_reference_safe, graph_->IsDebuggable(), /* osr= */ false, - caller_instruction_counter); + /* is_shared_jit_code= */ graph_->IsCompilingForSharedJitCode(), + /* start_instruction_id= */ caller_instruction_counter); callee_graph->SetArtMethod(resolved_method); // When they are needed, allocate `inline_stats_` on the Arena instead |