Perform a post-order traversal over the given function. Yields `ir::Block` items.
(&'a mut self, func: &'a ir::Function)
| 70 | /// |
| 71 | /// Yields `ir::Block` items. |
| 72 | pub fn post_order_iter<'a>(&'a mut self, func: &'a ir::Function) -> DfsPostOrderIter<'a> { |
| 73 | DfsPostOrderIter(self.iter(func)) |
| 74 | } |
| 75 | |
| 76 | /// Clear this DFS, but keep its allocations for future reuse. |
| 77 | pub fn clear(&mut self) { |
no test coverage detected