80 column rule.
authorStuart Hastings <stuart@apple.com>
Wed, 4 Feb 2009 20:30:10 +0000 (20:30 +0000)
committerStuart Hastings <stuart@apple.com>
Wed, 4 Feb 2009 20:30:10 +0000 (20:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63768 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 435bcafe8e5735155406da67ec7ad44338d88e84..537b70493e81182ea7db74b1929d46261179c3a8 100644 (file)
@@ -5753,7 +5753,8 @@ void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const {
 }
 
 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.