Implements the `SubtractInteger` opcode.
(&mut self, instr: u32)
| 1115 | |
| 1116 | /// Implements the `SubtractInteger` opcode. |
| 1117 | pub(super) fn do_subtract_integer(&mut self, instr: u32) { |
| 1118 | self.do_binary_integer_op(instr, bytecode::parse_subtract_integer, checked_sub_integer); |
| 1119 | } |
| 1120 | |
| 1121 | /// Implements the `Upcall` opcode. |
| 1122 | pub(super) fn do_upcall(&mut self, instr: u32) { |
no test coverage detected