From 010b5858c1288db00d447c95dfa72eb39366c7a1 Mon Sep 17 00:00:00 2001 From: Stuart Hastings Date: Wed, 4 Feb 2009 20:30:10 +0000 Subject: [PATCH] 80 column rule. llvm-svn: 63768 --- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 435bcafe8e5..537b70493e8 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5753,7 +5753,8 @@ void SDNode::printr(raw_ostream &OS, const SelectionDAG *G) const { } typedef SmallPtrSet 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.