fixed a bug in long shifts

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1226 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
jochen 24 years ago
parent 5f8d149b5e
commit b8e6d80e8c
  1. 4
      jode/jode/obfuscator/modules/ConstantAnalyzer.java.in

@ -1554,8 +1554,8 @@ public class ConstantAnalyzer implements Opcodes, CodeAnalyzer {
break;
case opc_lshl: case opc_lshr: case opc_lushr:
iter.set(new Instruction(opc_pop2));
iter.add(new Instruction(opc_pop));
iter.set(new Instruction(opc_pop));
iter.add(new Instruction(opc_pop2));
break;
case opc_putstatic:
case opc_putfield:

Loading…
Cancel
Save