Skip to content

Commit 1b0e6b5

Browse files
committed
Fix unreachable reinterpret instruction execution
1 parent ff45b86 commit 1b0e6b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Interpreter/interpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ bool Interpreter::interpret(Module *m, bool waiting) {
432432
continue;
433433

434434
// conversion operations
435-
case 0xa7 ... 0xbb:
435+
case 0xa7 ... 0xbf:
436436
success &= i_instr_conversion(m, opcode);
437437
continue;
438438

0 commit comments

Comments
 (0)