Fetch a block's last instruction.
(&self, block: Block)
| 457 | |
| 458 | /// Fetch a block's last instruction. |
| 459 | pub fn last_inst(&self, block: Block) -> Option<Inst> { |
| 460 | self.blocks[block].last_inst.into() |
| 461 | } |
| 462 | |
| 463 | /// Fetch the instruction following `inst`. |
| 464 | pub fn next_inst(&self, inst: Inst) -> Option<Inst> { |
no outgoing calls