output fix: add ";" after declaration

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@671 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 054bc03ca2
commit 8c947fef35
  1. 2
      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 ");

Loading…
Cancel
Save