- Rename BreakCriticalEdge to the slightly more standard SplitCriticalEdge
llvm-svn: 3587
This commit is contained in:
parent
579bb9b527
commit
00b95cc534
|
|
@ -68,10 +68,11 @@ bool SimplifyCFG(BasicBlock *BB);
|
||||||
///
|
///
|
||||||
bool isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum);
|
bool isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum);
|
||||||
|
|
||||||
/// BreakCriticalEdge - Insert a new node node to split the critical edge. This
|
/// SplitCriticalEdge - Insert a new node node to split the critical edge. This
|
||||||
/// will update DominatorSet and DominatorTree information if it is available,
|
/// will update DominatorSet, ImmediateDominator and DominatorTree information
|
||||||
/// thus calling this pass will not invalidate either of them.
|
/// if it is available, thus calling this pass will not invalidate either of
|
||||||
|
/// them.
|
||||||
///
|
///
|
||||||
void BreakCriticalEdge(TerminatorInst *TI, unsigned SuccNum, Pass *P = 0);
|
void SplitCriticalEdge(TerminatorInst *TI, unsigned SuccNum, Pass *P = 0);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue