Home
last modified time | relevance | path

Searched refs:DfsPostOrderIter (Results 1 – 1 of 1) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/
H A Dtraversals.rs72 pub fn post_order_iter<'a>(&'a mut self, func: &'a ir::Function) -> DfsPostOrderIter<'a> { in post_order_iter()
73 DfsPostOrderIter(self.iter(func)) in post_order_iter()
152 pub struct DfsPostOrderIter<'a>(DfsIter<'a>); struct
154 impl Iterator for DfsPostOrderIter<'_> { implementation