diff options
author | 2017-03-23 16:00:04 +0000 | |
---|---|---|
committer | 2017-03-23 16:00:04 +0000 | |
commit | 594e8b13a6b9aca4670b819b3fb6e59fbaf6ddb4 (patch) | |
tree | 2fd838360396930bc6a10e483eb835c67b2d0a9e /compiler/optimizing/nodes.cc | |
parent | af818fab0a861899c8b932fab4c9eacaf92c6ba1 (diff) | |
parent | b13c65bb46544821a84ff2106d0710d77b0fb463 (diff) |
Merge "Saves full XMM state along suspend check's slow path."
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 020e4463d4..ec706e6694 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -2046,6 +2046,9 @@ HInstruction* HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) { if (HasTryCatch()) { outer_graph->SetHasTryCatch(true); } + if (HasSIMD()) { + outer_graph->SetHasSIMD(true); + } HInstruction* return_value = nullptr; if (GetBlocks().size() == 3) { |