An iterator over block predecessors. The iterator type is `BlockPredecessor`. Each predecessor is an instruction that branches to the block.
| 181 | /// |
| 182 | /// Each predecessor is an instruction that branches to the block. |
| 183 | pub struct PredIter<'a>(bforest::MapIter<'a, Inst, Block>); |
| 184 | |
| 185 | impl<'a> Iterator for PredIter<'a> { |
| 186 | type Item = BlockPredecessor; |