Implements the `MultiplyDouble` opcode.
(&mut self, instr: u32)
| 954 | |
| 955 | /// Implements the `MultiplyDouble` opcode. |
| 956 | pub(super) fn do_multiply_double(&mut self, instr: u32) { |
| 957 | self.do_binary_double_op(instr, bytecode::parse_multiply_double, |l, r| l * r); |
| 958 | } |
| 959 | |
| 960 | /// Implements the `MultiplyInteger` opcode. |
| 961 | pub(super) fn do_multiply_integer(&mut self, instr: u32) { |
no test coverage detected