(&mut self, dst: FReg, bits: u64)
| 3175 | } |
| 3176 | |
| 3177 | fn fconst64(&mut self, dst: FReg, bits: u64) -> ControlFlow<Done> { |
| 3178 | self.state[dst].set_f64(f64::from_bits(bits)); |
| 3179 | ControlFlow::Continue(()) |
| 3180 | } |
| 3181 | |
| 3182 | fn bitcast_int_from_float_32(&mut self, dst: XReg, src: FReg) -> ControlFlow<Done> { |
| 3183 | let val = self.state[src].get_f32(); |