diff --git a/jode/jode/flow/InstructionBlock.java b/jode/jode/flow/InstructionBlock.java index 278e197..889bbfb 100644 --- a/jode/jode/flow/InstructionBlock.java +++ b/jode/jode/flow/InstructionBlock.java @@ -120,7 +120,8 @@ public class InstructionBlock extends InstructionContainer { Expression expr = ((ComplexExpression) instr).getSubExpressions()[0]; expr.makeInitializer(); - writer.println(local.getType() + " " + local.getName() + " = " + writer.println(local.getType().getHint() + " " + + local.getName() + " = " + expr.simplify().toString() + ";"); } else { if (instr.getType() != jode.Type.tVoid)