(&self, insn: InsnIndex)
| 1581 | } |
| 1582 | |
| 1583 | fn is_branch(&self, insn: InsnIndex) -> bool { |
| 1584 | match self.insts[insn.index()].is_term() { |
| 1585 | MachTerminator::Branch => true, |
| 1586 | _ => false, |
| 1587 | } |
| 1588 | } |
| 1589 | |
| 1590 | fn inst_operands(&self, insn: InsnIndex) -> &[Operand] { |
| 1591 | let range = self.operand_ranges.get(insn.index()); |
no test coverage detected