From 77771cfd97733be5e002657596231c17efbdc70c Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 18 Sep 2015 17:57:33 +0000 Subject: SelectionDAGDumper: Leave out the 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 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'llvm/lib/CodeGen') 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()) << ": \n"; dbgs().indent(indent); N->dump(G); -- cgit v1.2.3