Implements the `DivideInteger` opcode.
(&mut self, instr: u32)
| 710 | |
| 711 | /// Implements the `DivideInteger` opcode. |
| 712 | pub(super) fn do_divide_integer(&mut self, instr: u32) { |
| 713 | self.do_binary_integer_op(instr, bytecode::parse_divide_integer, checked_div_integer); |
| 714 | } |
| 715 | |
| 716 | /// Implements the `DoubleToInteger` opcode. |
| 717 | pub(super) fn do_double_to_integer(&mut self, instr: u32) { |
no test coverage detected