(&mut self, dst: XReg, src1: XReg, src2: i8)
| 2270 | } |
| 2271 | |
| 2272 | fn xband32_s8(&mut self, dst: XReg, src1: XReg, src2: i8) -> ControlFlow<Done> { |
| 2273 | self.xband32_s32(dst, src1, src2.into()) |
| 2274 | } |
| 2275 | |
| 2276 | fn xband32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> { |
| 2277 | let a = self.state[src1].get_i32(); |
nothing calls this directly
no test coverage detected