mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 12:37:37 +02:00
Fix for invoke-virtual/range with no register range.
This commit is contained in:
@ -1590,8 +1590,8 @@ public class MethodAnalyzer {
|
||||
opcode = Opcode.INVOKE_VIRTUAL_RANGE;
|
||||
}
|
||||
|
||||
deodexedInstruction = new ImmutableInstruction3rc(opcode, instruction.getRegisterCount(),
|
||||
instruction.getStartRegister(), resolvedMethod);
|
||||
deodexedInstruction = new ImmutableInstruction3rc(opcode, instruction.getStartRegister(),
|
||||
instruction.getRegisterCount(), resolvedMethod);
|
||||
} else {
|
||||
Instruction35ms instruction = (Instruction35ms)analyzedInstruction.instruction;
|
||||
Opcode opcode;
|
||||
|
Reference in New Issue
Block a user