(&mut self, dst: XReg, src1: XReg, src2: u8)
| 1756 | } |
| 1757 | |
| 1758 | fn xsub32_u8(&mut self, dst: XReg, src1: XReg, src2: u8) -> ControlFlow<Done> { |
| 1759 | self.xsub32_u32(dst, src1, src2.into()) |
| 1760 | } |
| 1761 | |
| 1762 | fn xsub32_u32(&mut self, dst: XReg, src1: XReg, src2: u32) -> ControlFlow<Done> { |
| 1763 | let a = self.state[src1].get_u32(); |
nothing calls this directly
no test coverage detected