diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-05-30 01:09:53 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-05-30 01:09:53 +0000 |
commit | c19467424889a76b42eb17134180e42ff528c55b (patch) | |
tree | 1c33a0bd47e7b0fc26b2c57cb67cbb6b62e23ef4 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 849163188e3a0db94ef385cf63bdc56c534d65c4 (diff) | |
download | external_llvm-c19467424889a76b42eb17134180e42ff528c55b.zip external_llvm-c19467424889a76b42eb17134180e42ff528c55b.tar.gz external_llvm-c19467424889a76b42eb17134180e42ff528c55b.tar.bz2 |
Untabification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72604 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 0b27ccf..195896e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5616,8 +5616,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) { - if (!once.insert(N)) // If we've been here before, return now. + 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. OS << std::string(indent, ' '); @@ -5631,10 +5631,10 @@ static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, // This child has no grandchildren; print it inline right here. child->printr(OS, G); once.insert(child); - } else { // Just the address. FIXME: also print the child's opcode + } else { // Just the address. FIXME: also print the child's opcode OS << (void*)child; if (unsigned RN = N->getOperand(i).getResNo()) - OS << ":" << RN; + OS << ":" << RN; } } OS << "\n"; |