diff --git a/src/jvm.rs b/src/jvm.rs index 731cb5f..c1f869e 100644 --- a/src/jvm.rs +++ b/src/jvm.rs @@ -1570,6 +1570,10 @@ impl JVM { wrap_stackframe_error(class, method, frame.operand_stack.push(StackValue::Reference(new_object)))?; } + Instruction::NoOperation() => { + + } + Instruction::OrInt() => { let value_0 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?; let value_1 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;