[llvm-commits] [llvm] r63768 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Stuart Hastings stuart at apple.com
Wed Feb 4 12:30:10 PST 2009


Author: stuart
Date: Wed Feb  4 14:30:10 2009
New Revision: 63768

URL: http://llvm.org/viewvc/llvm-project?rev=63768&view=rev
Log:
80 column rule.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp?rev=63768&r1=63767&r2=63768&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Wed Feb  4 14:30:10 2009
@@ -5753,7 +5753,8 @@
 }
 
 typedef SmallPtrSet<const SDNode *, 128> VisitedSDNodeSet;
-static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, const SelectionDAG *G, VisitedSDNodeSet &once) {
+static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent,
+		       const SelectionDAG *G, VisitedSDNodeSet &once) {
   if (!once.insert(N))	// If we've been here before, return now.
     return;
   // Dump the current SDNode, but don't end the line yet.





More information about the llvm-commits mailing list