diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-20 00:18:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-20 00:18:07 +0000 |
commit | ae5d39e1bba338e41911d5e002c96c88d7618db8 (patch) | |
tree | e31caa7fbf92034d318232a0e1b807d81b56e58b /lib/Analysis/LoopInfo.cpp | |
parent | e30c7631898de0a0fb9e4c61b9b8ef4ab4ace5d7 (diff) |
Fix 80 character formatting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5604 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | lib/Analysis/LoopInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 21a50967e8..ef4b6430ba 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/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(); |