Fetch a block's first instruction.
(&self, block: Block)
| 452 | |
| 453 | /// Fetch a block's first instruction. |
| 454 | pub fn first_inst(&self, block: Block) -> Option<Inst> { |
| 455 | self.blocks[block].first_inst.into() |
| 456 | } |
| 457 | |
| 458 | /// Fetch a block's last instruction. |
| 459 | pub fn last_inst(&self, block: Block) -> Option<Inst> { |
no outgoing calls
no test coverage detected