From b176d7c6c8c01a50317f837a78de5da57ee84fb2 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Wed, 20 May 2015 18:48:31 +0100 Subject: Also encode the InvokeType in an InlineInfo. This will be needed to recover the call stack. Change-Id: I2fe10785eb1167939c8cce1862b2d7f4066e16ec --- compiler/optimizing/ssa_builder.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compiler/optimizing/ssa_builder.cc') diff --git a/compiler/optimizing/ssa_builder.cc b/compiler/optimizing/ssa_builder.cc index aac521187a..c51d248765 100644 --- a/compiler/optimizing/ssa_builder.cc +++ b/compiler/optimizing/ssa_builder.cc @@ -547,7 +547,8 @@ void SsaBuilder::VisitInstruction(HInstruction* instruction) { current_locals_->Size(), GetGraph()->GetDexFile(), GetGraph()->GetMethodIdx(), - instruction->GetDexPc()); + instruction->GetDexPc(), + GetGraph()->GetInvokeType()); environment->CopyFrom(*current_locals_); instruction->SetRawEnvironment(environment); } -- cgit v1.2.3-59-g8ed1b