(&mut self, dst: FReg, bits: u32)
| 3170 | } |
| 3171 | |
| 3172 | fn fconst32(&mut self, dst: FReg, bits: u32) -> ControlFlow<Done> { |
| 3173 | self.state[dst].set_f32(f32::from_bits(bits)); |
| 3174 | ControlFlow::Continue(()) |
| 3175 | } |
| 3176 | |
| 3177 | fn fconst64(&mut self, dst: FReg, bits: u64) -> ControlFlow<Done> { |
| 3178 | self.state[dst].set_f64(f64::from_bits(bits)); |