Long without trailing "L"

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@97 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 0d1a0eb443
commit 771af8c5bb
  1. 4
      jode/jode/bytecode/Opcodes.java

@ -360,7 +360,7 @@ public abstract class Opcodes {
return createNormal
(ca, addr, 1, new ConstOperator
(LONG_TYPE,
Integer.toString(opcode - opc_lconst_0) + "L"));
Integer.toString(opcode - opc_lconst_0)));
case opc_fconst_0: case opc_fconst_1: case opc_fconst_2:
return createNormal
(ca, addr, 1, new ConstOperator
@ -378,7 +378,7 @@ public abstract class Opcodes {
case opc_sipush:
return createNormal
(ca, addr, 3, new ConstOperator
(Type.tRange(Type.tInt, Type.tShort),
(Type.tRange(Type.tInt, Type.tChar),
Integer.toString(stream.readShort())));
case opc_ldc: {
int index = stream.readUnsignedByte();

Loading…
Cancel
Save