Is `block` reachable from the entry block?
(&self, block: Block)
| 49 | impl SimpleDominatorTree { |
| 50 | /// Is `block` reachable from the entry block? |
| 51 | pub fn is_reachable(&self, block: Block) -> bool { |
| 52 | self.nodes[block].rpo_number != 0 |
| 53 | } |
| 54 | |
| 55 | /// Get the CFG post-order of blocks that was used to compute the dominator tree. |
| 56 | /// |