From d23eeef3492b53102eb8093524cf37e2b4c296db Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 18 May 2015 22:31:29 +0100 Subject: Support for inlining methods that call/throw. Mostly fixes here and there to make it working. Change-Id: I1b535e895105d78b65634636d675b818551f783e --- 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 c51d248765..c4612af393 100644 --- a/compiler/optimizing/ssa_builder.cc +++ b/compiler/optimizing/ssa_builder.cc @@ -548,7 +548,8 @@ void SsaBuilder::VisitInstruction(HInstruction* instruction) { GetGraph()->GetDexFile(), GetGraph()->GetMethodIdx(), instruction->GetDexPc(), - GetGraph()->GetInvokeType()); + GetGraph()->GetInvokeType(), + instruction); environment->CopyFrom(*current_locals_); instruction->SetRawEnvironment(environment); } -- cgit v1.2.3-59-g8ed1b