fit in 80 cols
authorChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 00:19:16 +0000 (00:19 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 00:19:16 +0000 (00:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50014 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/BreakCriticalEdges.cpp

index bbea26936c857a5b645e20252572954cd54759a7..e230ca6830406979a669c482012ac8f9d81d8b3a 100644 (file)
@@ -114,12 +114,12 @@ bool llvm::isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum,
   return false;
 }
 
-// SplitCriticalEdge - If this edge is a critical edge, insert a new node to
-// split the critical edge.  This will update DominatorTree, and DominatorFrontier 
-// information if it is available, thus calling this pass will not invalidate 
-// any of them.  This returns true if the edge was split, false otherwise. 
-// This ensures that all edges to that dest go to one block instead of each 
-// going to a different block.
+/// SplitCriticalEdge - If this edge is a critical edge, insert a new node to
+/// split the critical edge.  This will update DominatorTree and
+/// DominatorFrontier  information if it is available, thus calling this pass
+/// will not invalidate  any of them.  This returns true if the edge was split,
+/// false otherwise.  This ensures that all edges to that dest go to one block
+/// instead of each going to a different block.
 //
 bool llvm::SplitCriticalEdge(TerminatorInst *TI, unsigned SuccNum, Pass *P,
                              bool MergeIdenticalEdges) {