[llvm-commits] [llvm] r50014 - /llvm/trunk/lib/Transforms/Utils/BreakCriticalEdges.cpp

Chris Lattner sabre at nondot.org
Sun Apr 20 17:19:16 PDT 2008


Author: lattner
Date: Sun Apr 20 19:19:16 2008
New Revision: 50014

URL: http://llvm.org/viewvc/llvm-project?rev=50014&view=rev
Log:
fit in 80 cols

Modified:
    llvm/trunk/lib/Transforms/Utils/BreakCriticalEdges.cpp

Modified: llvm/trunk/lib/Transforms/Utils/BreakCriticalEdges.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/BreakCriticalEdges.cpp?rev=50014&r1=50013&r2=50014&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Utils/BreakCriticalEdges.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/BreakCriticalEdges.cpp Sun Apr 20 19:19:16 2008
@@ -114,12 +114,12 @@
   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) {





More information about the llvm-commits mailing list