(&mut self, dst: XReg, src1: XReg, src2: u8)
| 1723 | } |
| 1724 | |
| 1725 | fn xadd64_u8(&mut self, dst: XReg, src1: XReg, src2: u8) -> ControlFlow<Done> { |
| 1726 | self.xadd64_u32(dst, src1, src2.into()) |
| 1727 | } |
| 1728 | |
| 1729 | fn xadd64_u32(&mut self, dst: XReg, src1: XReg, src2: u32) -> ControlFlow<Done> { |
| 1730 | let a = self.state[src1].get_u64(); |
nothing calls this directly
no test coverage detected