[llvm-commits] [llvm] r136099 - /llvm/trunk/include/llvm/ADT/SCCIterator.h

Duncan Sands baldrick at free.fr
Tue Jul 26 10:19:30 PDT 2011


Author: baldrick
Date: Tue Jul 26 12:19:30 2011
New Revision: 136099

URL: http://llvm.org/viewvc/llvm-project?rev=136099&view=rev
Log:
Strip trailing whitespace.

Modified:
    llvm/trunk/include/llvm/ADT/SCCIterator.h

Modified: llvm/trunk/include/llvm/ADT/SCCIterator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/SCCIterator.h?rev=136099&r1=136098&r2=136099&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/SCCIterator.h (original)
+++ llvm/trunk/include/llvm/ADT/SCCIterator.h Tue Jul 26 12:19:30 2011
@@ -87,7 +87,7 @@
         DFSVisitOne(childN);
         continue;
       }
-      
+
       unsigned childNum = nodeVisitNumbers[childN];
       if (MinVisitNumStack.back() > childNum)
         MinVisitNumStack.back() = childNum;
@@ -114,7 +114,7 @@
 
       if (minVisitNum != nodeVisitNumbers[visitingN])
         continue;
-      
+
       // A full SCC is on the SCCNodeStack!  It includes all nodes below
       // visitingN on the stack.  Copy those nodes to CurrentSCC,
       // reset their minVisit values, and return (this suspends
@@ -183,7 +183,7 @@
         return true;
     return false;
   }
-                           
+
   /// ReplaceNode - This informs the scc_iterator that the specified Old node
   /// has been deleted, and New is to be used in its place.
   void ReplaceNode(NodeType *Old, NodeType *New) {





More information about the llvm-commits mailing list