diff --git a/runtime/src/main/java/com/dylibso/chicory/runtime/Machine.java b/runtime/src/main/java/com/dylibso/chicory/runtime/Machine.java index a8142c297..36016de7a 100644 --- a/runtime/src/main/java/com/dylibso/chicory/runtime/Machine.java +++ b/runtime/src/main/java/com/dylibso/chicory/runtime/Machine.java @@ -59,15 +59,15 @@ void eval(List code) throws ChicoryException { var instruction = code.get(frame.pc++); var opcode = instruction.getOpcode(); var operands = instruction.getOperands(); -// System.out.println( -// "func=" -// + frame.funcId -// + "@" -// + frame.pc -// + ": " -// + instruction -// + "stack=" -// + this.stack); + // System.out.println( + // "func=" + // + frame.funcId + // + "@" + // + frame.pc + // + ": " + // + instruction + // + "stack=" + // + this.stack); switch (opcode) { case UNREACHABLE: throw new TrapException("Trapped on unreachable instruction", callStack);