diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-05-14 02:01:22 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-05-14 02:01:22 +0000 |
| commit | f98ede25bb18a958631cd313ca525abe6fbb7f59 (patch) | |
| tree | 3ec41049ce22008404c30a86b6ecb0647c03e214 /llvm | |
| parent | fc124ea453325cdb20d8355d2b4f53e8459511e4 (diff) | |
| download | bcm5719-llvm-f98ede25bb18a958631cd313ca525abe6fbb7f59.tar.gz bcm5719-llvm-f98ede25bb18a958631cd313ca525abe6fbb7f59.zip | |
This is a proper fix for the compiler warning. A termination condition is
not needed, as it can never be reached: an edge must exist.
llvm-svn: 28282
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h b/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h index 4c12c704d2d..3853901b30c 100644 --- a/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h +++ b/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h @@ -74,7 +74,8 @@ inline bool SplitCriticalEdge(BasicBlock *BB, succ_iterator SI, Pass *P = 0) { /// SplitCriticalEdge - If the edge from *PI to BB is not critical, return /// false. Otherwise, split all edges between the two blocks and return true. /// This updates all of the same analyses as the other SplitCriticalEdge -/// function. +/// function. If P is specified, it updates the analyses +/// described above. inline bool SplitCriticalEdge(BasicBlock *Succ, pred_iterator PI, Pass *P = 0) { bool MadeChange = false; TerminatorInst *TI = (*PI)->getTerminator(); @@ -84,12 +85,19 @@ inline bool SplitCriticalEdge(BasicBlock *Succ, pred_iterator PI, Pass *P = 0) { return MadeChange; } +/// SplitCriticalEdge - If an edge from Src to Dst is critical, split the edge +/// and return true, otherwise return false. This method requires that there be +/// an edge between the two blocks. If P is specified, it updates the analyses +/// described above. inline bool SplitCriticalEdge(BasicBlock *Src, BasicBlock *Dst, Pass *P = 0) { TerminatorInst *TI = Src->getTerminator(); - for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) + unsigned i = 0; + while (1) { + assert(i != TI->getNumSuccessors() && "Edge doesn't exist!"); if (TI->getSuccessor(i) == Dst) return SplitCriticalEdge(TI, i, P); - return false; + ++i; + } } } // End llvm namespace |

