diff options
author | 2019-06-26 22:00:02 +0000 | |
---|---|---|
committer | 2019-06-26 22:00:38 +0000 | |
commit | 2fef66b294417d447630f9d98de68227eef476d3 (patch) | |
tree | 59fc4ea6cf13217eb92fbdd4e39561b5ad518cf0 /compiler/optimizing/inliner.cc | |
parent | 21d5994583c679cd5d8573b5d35dbd659bdca2c7 (diff) |
Revert "Make the JIT zygote memory shared."
This reverts commit 05f87217ddc9b4b9186710c0135b918f456c5aef.
Bug: 119800099
Bug: 136110523
Reason for revert: testWebview flaking
Change-Id: I96afa6bc9c56c4aaf5ed72ae370f6f69c096c559
Diffstat (limited to 'compiler/optimizing/inliner.cc')
-rw-r--r-- | compiler/optimizing/inliner.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc index 15155751a7..9ef5ec31d1 100644 --- a/compiler/optimizing/inliner.cc +++ b/compiler/optimizing/inliner.cc @@ -1814,8 +1814,7 @@ bool HInliner::TryBuildAndInlineHelper(HInvoke* invoke_instruction, callee_dead_reference_safe, graph_->IsDebuggable(), /* osr= */ false, - /* is_shared_jit_code= */ graph_->IsCompilingForSharedJitCode(), - /* start_instruction_id= */ caller_instruction_counter); + caller_instruction_counter); callee_graph->SetArtMethod(resolved_method); // When they are needed, allocate `inline_stats_` on the Arena instead |