Add a new node to the dominator tree information.
Declared in <llvm/Support/GenericDomTree.h>
DomTreeNodeBase<BasicBlock>*
addNewBlock(
BasicBlock* BB,
BasicBlock* DomBB);
This creates a new node as a child of DomBB dominator node, linking it into the children list of the immediate dominator.
New dominator tree node that represents new CFG node.
| Name | Description |
|---|---|
| BB | New node in CFG. |
| DomBB | CFG node that is dominator for BB. |