Implements the `MultiplyInteger` opcode.
(&mut self, instr: u32)
| 959 | |
| 960 | /// Implements the `MultiplyInteger` opcode. |
| 961 | pub(super) fn do_multiply_integer(&mut self, instr: u32) { |
| 962 | self.do_binary_integer_op(instr, bytecode::parse_multiply_integer, checked_mul_integer); |
| 963 | } |
| 964 | |
| 965 | /// Implements the `NegateDouble` opcode. |
| 966 | pub(super) fn do_negate_double(&mut self, instr: u32) { |
no test coverage detected