Method
bitcast_float_from_int_32
(&mut self, dst: FReg, src: XReg)
Source from the content-addressed store, hash-verified
| 3192 | } |
| 3193 | |
| 3194 | fn bitcast_float_from_int_32(&mut self, dst: FReg, src: XReg) -> ControlFlow<Done> { |
| 3195 | let val = self.state[src].get_u32(); |
| 3196 | self.state[dst].set_f32(f32::from_bits(val)); |
| 3197 | ControlFlow::Continue(()) |
| 3198 | } |
| 3199 | |
| 3200 | fn bitcast_float_from_int_64(&mut self, dst: FReg, src: XReg) -> ControlFlow<Done> { |
| 3201 | let val = self.state[src].get_u64(); |
Callers
nothing calls this directly
Tested by
no test coverage detected