Go to the first instruction in `block`.
(&mut self, block: ir::Block)
| 274 | |
| 275 | /// Go to the first instruction in `block`. |
| 276 | fn goto_first_inst(&mut self, block: ir::Block) { |
| 277 | let inst = self.layout().first_inst(block).expect("Empty block"); |
| 278 | self.goto_inst(inst); |
| 279 | } |
| 280 | |
| 281 | /// Go to the last instruction in `block`. |
| 282 | fn goto_last_inst(&mut self, block: ir::Block) { |
no test coverage detected