(&self)
| 596 | } |
| 597 | |
| 598 | pub fn source_reg_stack(&self) -> A::RegisterStack { |
| 599 | let raw_id = self.op.operands[0] as u32; |
| 600 | self.function |
| 601 | .arch() |
| 602 | .register_stack_from_id(RegisterStackId(raw_id)) |
| 603 | .expect("Bad register stack ID") |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | impl<A, M, F> Debug for Operation<'_, A, M, F, RegStackPop> |
no test coverage detected