Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Oct 12, 2023
1 parent bbcd1af commit d2d5cf9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions runtime/src/main/java/com/dylibso/chicory/runtime/Machine.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ void eval(List<Instruction> 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);
Expand Down

0 comments on commit d2d5cf9

Please sign in to comment.