Fix issue when deodexing invoke-object-init/range instruction

This commit is contained in:
Ben Gruver
2013-04-09 23:42:20 -07:00
parent ac2686b3fc
commit 39b3a7c5a9

View File

@ -1486,7 +1486,7 @@ public class MethodAnalyzer {
Instruction3rc instruction = (Instruction3rc)analyzedInstruction.instruction;
Instruction3rc deodexedInstruction = new ImmutableInstruction3rc(Opcode.INVOKE_DIRECT_RANGE,
instruction.getRegisterCount(), instruction.getStartRegister(), instruction.getReference());
instruction.getStartRegister(), instruction.getRegisterCount(), instruction.getReference());
analyzedInstruction.setDeodexedInstruction(deodexedInstruction);