diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-21 00:19:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-21 00:19:16 +0000 |
commit | 8e76759afbfe887d7bc7b2ce49cd4a94dc557d50 (patch) | |
tree | b468a72ac6e682e10711b470cb9e349b420ad250 /lib/Transforms/Utils | |
parent | 5a80b29e56d03e87acc83058da560d2cd81a481c (diff) | |
download | external_llvm-8e76759afbfe887d7bc7b2ce49cd4a94dc557d50.zip external_llvm-8e76759afbfe887d7bc7b2ce49cd4a94dc557d50.tar.gz external_llvm-8e76759afbfe887d7bc7b2ce49cd4a94dc557d50.tar.bz2 |
fit in 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils')
-rw-r--r-- | lib/Transforms/Utils/BreakCriticalEdges.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Transforms/Utils/BreakCriticalEdges.cpp b/lib/Transforms/Utils/BreakCriticalEdges.cpp index bbea269..e230ca6 100644 --- a/lib/Transforms/Utils/BreakCriticalEdges.cpp +++ b/lib/Transforms/Utils/BreakCriticalEdges.cpp @@ -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) { |