(&mut self, dst: XReg, src1: XReg, src2: i8)
| 1790 | } |
| 1791 | |
| 1792 | fn xmul32_s8(&mut self, dst: XReg, src1: XReg, src2: i8) -> ControlFlow<Done> { |
| 1793 | self.xmul32_s32(dst, src1, src2.into()) |
| 1794 | } |
| 1795 | |
| 1796 | fn xmul32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> { |
| 1797 | let a = self.state[src1].get_i32(); |
nothing calls this directly
no test coverage detected