(&mut self, dst: XReg, src: FReg)
| 3340 | } |
| 3341 | |
| 3342 | fn x32_from_f32_s(&mut self, dst: XReg, src: FReg) -> ControlFlow<Done> { |
| 3343 | let a = self.state[src].get_f32(); |
| 3344 | self.check_xnn_from_f32::<crate::X32FromF32S>(a, f32_cvt_to_int_bounds(true, 32))?; |
| 3345 | self.state[dst].set_i32(a as i32); |
| 3346 | ControlFlow::Continue(()) |
| 3347 | } |
| 3348 | |
| 3349 | fn x32_from_f32_u(&mut self, dst: XReg, src: FReg) -> ControlFlow<Done> { |
| 3350 | let a = self.state[src].get_f32(); |
nothing calls this directly
no test coverage detected