I just implemented no-op
This commit is contained in:
parent
202d7692bc
commit
022bfe9ee6
1 changed files with 4 additions and 0 deletions
|
@ -1570,6 +1570,10 @@ impl JVM {
|
||||||
wrap_stackframe_error(class, method, frame.operand_stack.push(StackValue::Reference(new_object)))?;
|
wrap_stackframe_error(class, method, frame.operand_stack.push(StackValue::Reference(new_object)))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Instruction::NoOperation() => {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Instruction::OrInt() => {
|
Instruction::OrInt() => {
|
||||||
let value_0 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;
|
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))?;
|
let value_1 = wrap_stackframe_error(class, method, frame.operand_stack.pop_int(0))?;
|
||||||
|
|
Loading…
Reference in a new issue