Constant parameter test, kind of slow though, 46s.

This commit is contained in:
Adam
2016-03-24 17:25:16 -04:00
parent cbdf406434
commit b16fbd712e
2 changed files with 43 additions and 0 deletions

View File

@@ -490,6 +490,9 @@ public class ConstantParameter implements Deobfuscator
// move things that jump here to instead jump to 'to'
for (Instruction i : instructions.getInstructions())
i.replace(ins, to);
for (net.runelite.asm.attributes.code.Exception e : instructions.getCode().getExceptions().getExceptions())
e.replace(ins, to);
instructions.remove(ins);