Finish the operand collection and return the tuple giving the range of indices in the flattened operand array, and the clobber set.
(self)
| 395 | /// range of indices in the flattened operand array, and the |
| 396 | /// clobber set. |
| 397 | pub fn finish(self) -> (usize, PRegSet) { |
| 398 | let end = self.operands.len(); |
| 399 | (end, self.clobbers) |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | pub trait OperandVisitor { |
no test coverage detected