mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 12:37:37 +02:00
Fix issue when deodexing invoke-object-init/range instruction
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user