[llvm-commits] CVS: llvm/lib/Analysis/LoopInfo.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Feb 19 18:19:01 PST 2003


Changes in directory llvm/lib/Analysis:

LoopInfo.cpp updated: 1.27 -> 1.28

---
Log message:

Fix 80 character formatting


---
Diffs of the changes:

Index: llvm/lib/Analysis/LoopInfo.cpp
diff -u llvm/lib/Analysis/LoopInfo.cpp:1.27 llvm/lib/Analysis/LoopInfo.cpp:1.28
--- llvm/lib/Analysis/LoopInfo.cpp:1.27	Wed Feb 19 18:17:17 2003
+++ llvm/lib/Analysis/LoopInfo.cpp	Wed Feb 19 18:18:07 2003
@@ -149,10 +149,10 @@
         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();





More information about the llvm-commits mailing list