(&self, block: BlockIndex)
| 1549 | } |
| 1550 | |
| 1551 | fn block_preds(&self, block: BlockIndex) -> &[BlockIndex] { |
| 1552 | let range = self.block_pred_range.get(block.index()); |
| 1553 | &self.block_preds[range] |
| 1554 | } |
| 1555 | |
| 1556 | fn block_params(&self, block: BlockIndex) -> &[VReg] { |
| 1557 | // As a special case we don't return block params for the entry block, as all the arguments |