Fix 80 character formatting
authorChris Lattner <sabre@nondot.org>
Thu, 20 Feb 2003 00:18:07 +0000 (00:18 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 20 Feb 2003 00:18:07 +0000 (00:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5604 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/LoopInfo.cpp

index 21a50967e82cfbed0313271e2ca2af86c93a8938..ef4b6430ba2ad4aa1b0c511569c00e25b1cb18fa 100644 (file)
@@ -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();