(&mut self, dst: XReg, src1: XReg, src2: i8)
| 2304 | } |
| 2305 | |
| 2306 | fn xbor32_s8(&mut self, dst: XReg, src1: XReg, src2: i8) -> ControlFlow<Done> { |
| 2307 | self.xbor32_s32(dst, src1, src2.into()) |
| 2308 | } |
| 2309 | |
| 2310 | fn xbor32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> { |
| 2311 | let a = self.state[src1].get_i32(); |
nothing calls this directly
no test coverage detected