summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/LoopInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-02-20 00:18:07 +0000
committerChris Lattner <sabre@nondot.org>2003-02-20 00:18:07 +0000
commit1dc4c29b6dab75cc6966a2ff34cc1ba109be0b16 (patch)
tree5cc4ed0ef5d48f5fa6c7986cf2f6329b23b47e7e /llvm/lib/Analysis/LoopInfo.cpp
parent0049419836f84d295d156cc2cee4f3c5739b6092 (diff)
downloadbcm5719-llvm-1dc4c29b6dab75cc6966a2ff34cc1ba109be0b16.tar.gz
bcm5719-llvm-1dc4c29b6dab75cc6966a2ff34cc1ba109be0b16.zip
Fix 80 character formatting
llvm-svn: 5604
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r--llvm/lib/Analysis/LoopInfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp
index 21a50967e82..ef4b6430ba2 100644
--- a/llvm/lib/Analysis/LoopInfo.cpp
+++ b/llvm/lib/Analysis/LoopInfo.cpp
@@ -149,10 +149,10 @@ Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
if (BBMI == BBMap.end() || BBMI->first != *I) { // Not in map yet...
BBMap.insert(BBMI, std::make_pair(*I, L));
} else {
- // If this is already in the BBMap then this means that we already added
- // a loop for it, but incorrectly added the loop to a higher level loop
- // instead of the current loop we are creating. Fix this now by moving
- // the loop into the correct subloop.
+ // If this is already in the BBMap then this means that we already
+ // added a loop for it, but incorrectly added the loop to a higher
+ // level loop instead of the current loop we are creating. Fix this
+ // now by moving the loop into the correct subloop.
//
Loop *SubLoop = BBMI->second;
Loop *OldSubLoopParent = SubLoop->getParentLoop();
OpenPOWER on IntegriCloud