From 8c947fef352e9be7f11baeec3aed6eff6758a37c Mon Sep 17 00:00:00 2001 From: jochen Date: Wed, 28 Apr 1999 09:21:22 +0000 Subject: [PATCH] output fix: add ";" after declaration git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@671 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/InstructionBlock.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/flow/InstructionBlock.java b/jode/jode/flow/InstructionBlock.java index 35c3b6e..6e4cc8c 100644 --- a/jode/jode/flow/InstructionBlock.java +++ b/jode/jode/flow/InstructionBlock.java @@ -143,7 +143,7 @@ public class InstructionBlock extends InstructionContainer { if (isDeclaration) { LocalInfo local = ((LocalStoreOperator) instr.getOperator()) .getLocalInfo(); - writer.println(local.getType().getHint() + " " + instr); + writer.println(local.getType().getHint() + " " + instr + ";"); } else { if (instr.getType() != Type.tVoid) writer.print("PUSH ");