(&mut self, dst: FReg, src: XReg)
| 3316 | } |
| 3317 | |
| 3318 | fn f64_from_x32_s(&mut self, dst: FReg, src: XReg) -> ControlFlow<Done> { |
| 3319 | let a = self.state[src].get_i32(); |
| 3320 | self.state[dst].set_f64(a as f64); |
| 3321 | ControlFlow::Continue(()) |
| 3322 | } |
| 3323 | |
| 3324 | fn f64_from_x32_u(&mut self, dst: FReg, src: XReg) -> ControlFlow<Done> { |
| 3325 | let a = self.state[src].get_u32(); |