(&mut self, dst: FReg, src: XReg)
| 3304 | } |
| 3305 | |
| 3306 | fn f32_from_x64_s(&mut self, dst: FReg, src: XReg) -> ControlFlow<Done> { |
| 3307 | let a = self.state[src].get_i64(); |
| 3308 | self.state[dst].set_f32(a as f32); |
| 3309 | ControlFlow::Continue(()) |
| 3310 | } |
| 3311 | |
| 3312 | fn f32_from_x64_u(&mut self, dst: FReg, src: XReg) -> ControlFlow<Done> { |
| 3313 | let a = self.state[src].get_u64(); |