(&mut self, dst: FReg, src: FReg)
| 3562 | } |
| 3563 | |
| 3564 | fn ftrunc32(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> { |
| 3565 | let a = self.state[src].get_f32(); |
| 3566 | self.state[dst].set_f32(a.wasm_trunc()); |
| 3567 | ControlFlow::Continue(()) |
| 3568 | } |
| 3569 | |
| 3570 | #[interp_disable_if_cfg(pulley_disable_interp_simd)] |
| 3571 | fn vtrunc32x4(&mut self, dst: VReg, src: VReg) -> ControlFlow<Done> { |
nothing calls this directly
no test coverage detected