diff options
| author | Matthias Braun <matze@braunis.de> | 2015-09-18 17:57:33 +0000 |
|---|---|---|
| committer | Matthias Braun <matze@braunis.de> | 2015-09-18 17:57:33 +0000 |
| commit | 77771cfd97733be5e002657596231c17efbdc70c (patch) | |
| tree | 509b08bade6a1ec87d40d98cda3485abff9e4678 /llvm/lib/CodeGen | |
| parent | bab3fb45e56f166725b55dc9ab2b098e2ce45011 (diff) | |
| download | bcm5719-llvm-77771cfd97733be5e002657596231c17efbdc70c.tar.gz bcm5719-llvm-77771cfd97733be5e002657596231c17efbdc70c.zip | |
SelectionDAGDumper: Leave out the <multiple use> markers
They mostly clutter the output while it is still possible to see which
node has multiple users without them.
Differential Revision: http://reviews.llvm.org/D12569
llvm-svn: 248013
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index dd50beeb33b..9f9c7deda7f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -586,9 +586,6 @@ static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) { for (const SDValue &Op : N->op_values()) if (Op.getNode()->hasOneUse()) DumpNodes(Op.getNode(), indent+2, G); - else - dbgs() << std::string(indent+2, ' ') - << PrintNodeId(*Op.getNode()) << ": <multiple use>\n"; dbgs().indent(indent); N->dump(G); |

