insertEdge overloads
Declared in <llvm/ADT/PostOrderIterator.h>
Add edge and return whether To should be visited. From is nullopt for the root node.
bool
insertEdge(
std::optional<NodeRef> From,
NodeRef To);
» more...
Decide whether to traverse a CFG edge into a loop block.
bool
insertEdge(
std::optional<BasicBlock*> From,
BasicBlock* BB);
» more...
To should be visited.| Name | Description |
|---|---|
| From | Predecessor node, or nullopt for the traversal root. |
| To | Successor being considered. |
| BB | Destination block of the CFG edge. |