diff options
Diffstat (limited to 'compiler/optimizing/nodes.cc')
-rw-r--r-- | compiler/optimizing/nodes.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.cc b/compiler/optimizing/nodes.cc index 22e165767d..50cedd2502 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -2450,6 +2450,9 @@ HInstruction* HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) { if (HasIrreducibleLoops()) { outer_graph->SetHasIrreducibleLoops(true); } + if (HasDirectCriticalNativeCall()) { + outer_graph->SetHasDirectCriticalNativeCall(true); + } if (HasTryCatch()) { outer_graph->SetHasTryCatch(true); } |