(&mut self, dst: XReg, imm: i32)
| 1689 | } |
| 1690 | |
| 1691 | fn xconst32(&mut self, dst: XReg, imm: i32) -> ControlFlow<Done> { |
| 1692 | self.state[dst].set_i64(i64::from(imm)); |
| 1693 | ControlFlow::Continue(()) |
| 1694 | } |
| 1695 | |
| 1696 | fn xconst64(&mut self, dst: XReg, imm: i64) -> ControlFlow<Done> { |
| 1697 | self.state[dst].set_i64(imm); |