(&mut self, dst: XReg, src1: XReg, src2: i32)
| 2274 | } |
| 2275 | |
| 2276 | fn xband32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> { |
| 2277 | let a = self.state[src1].get_i32(); |
| 2278 | self.state[dst].set_i32(a & src2); |
| 2279 | ControlFlow::Continue(()) |
| 2280 | } |
| 2281 | |
| 2282 | fn xband64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> { |
| 2283 | let a = self.state[operands.src1].get_u64(); |
no test coverage detected