diff options
author | Stuart Hastings <stuart@apple.com> | 2009-02-04 20:30:10 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@apple.com> | 2009-02-04 20:30:10 +0000 |
commit | 4caa0427bfae369854ecdfe60b94238e566a5475 (patch) | |
tree | 95e315f7e96ba89e280e15e7fd0e6afbde588fa6 /lib | |
parent | 33c960f523f2308482d5b2816af46a7ec90a6d3d (diff) | |
download | external_llvm-4caa0427bfae369854ecdfe60b94238e566a5475.zip external_llvm-4caa0427bfae369854ecdfe60b94238e566a5475.tar.gz external_llvm-4caa0427bfae369854ecdfe60b94238e566a5475.tar.bz2 |
80 column rule.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63768 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 435bcaf..537b704 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<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. |