(&mut self)
| 1504 | } |
| 1505 | |
| 1506 | fn visit_end(&mut self) -> Self::Output { |
| 1507 | if !self.context.reachable { |
| 1508 | self.handle_unreachable_end() |
| 1509 | } else { |
| 1510 | let mut control = self.pop_control_frame()?; |
| 1511 | control.emit_end(self.masm, &mut self.context) |
| 1512 | } |
| 1513 | } |
| 1514 | |
| 1515 | fn visit_i32_popcnt(&mut self) -> Self::Output { |
| 1516 | use OperandSize::*; |
nothing calls this directly
no test coverage detected