llvm::post_order

Post-order traversal of a graph. Note: this returns a PostOrderTraversal, not an iterator range;

Synopsis

Declared in <llvm/ADT/PostOrderIterator.h>

template<class T>
auto
post_order(T const& G);

Return Value

Post-order traversal object starting at the entry of G.

Parameters

NameDescription
GGraph whose entry node starts the walk.

See Also

PostOrderTraversal.