Is `block` reachable from the entry block?
(&self, block: Block)
| 203 | impl DominatorTree { |
| 204 | /// Is `block` reachable from the entry block? |
| 205 | pub fn is_reachable(&self, block: Block) -> bool { |
| 206 | self.nodes[block].pre_number != NOT_VISITED |
| 207 | } |
| 208 | |
| 209 | /// Get the CFG post-order of blocks that was used to compute the dominator tree. |
| 210 | /// |
no outgoing calls
no test coverage detected