|
|
@ -18,7 +18,7 @@ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
package jode.flow; |
|
|
|
package jode.flow; |
|
|
|
import jode.Type; |
|
|
|
import jode.type.Type; |
|
|
|
import jode.decompiler.TabbedPrintWriter; |
|
|
|
import jode.decompiler.TabbedPrintWriter; |
|
|
|
import jode.decompiler.LocalInfo; |
|
|
|
import jode.decompiler.LocalInfo; |
|
|
|
import jode.expr.ComplexExpression; |
|
|
|
import jode.expr.ComplexExpression; |
|
|
@ -127,7 +127,7 @@ public class InstructionBlock extends InstructionContainer { |
|
|
|
+ local.getName() + " = " |
|
|
|
+ local.getName() + " = " |
|
|
|
+ expr.simplify().toString() + ";"); |
|
|
|
+ expr.simplify().toString() + ";"); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
if (instr.getType() != jode.Type.tVoid) |
|
|
|
if (instr.getType() != Type.tVoid) |
|
|
|
writer.print("PUSH "); |
|
|
|
writer.print("PUSH "); |
|
|
|
writer.println(instr.simplify().toString()+";"); |
|
|
|
writer.println(instr.simplify().toString()+";"); |
|
|
|
} |
|
|
|
} |
|
|
|