mirror of
https://github.com/revanced/smali.git
synced 2025-05-22 19:08:52 +02:00
Fix for invoke-virtual/range with no register range.
This commit is contained in:
parent
d4e3ab3fd5
commit
389c3a6afa
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user