(&mut self, dst: XReg, src: XReg)
| 1901 | } |
| 1902 | |
| 1903 | fn xneg32(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 1904 | let a = self.state[src].get_i32(); |
| 1905 | self.state[dst].set_i32(a.wrapping_neg()); |
| 1906 | ControlFlow::Continue(()) |
| 1907 | } |
| 1908 | |
| 1909 | fn xneg64(&mut self, dst: XReg, src: XReg) -> ControlFlow<Done> { |
| 1910 | let a = self.state[src].get_i64(); |
nothing calls this directly
no test coverage detected