[PATCH] D12569: SelectionDAGDumper: Leave out the <multiple use> markers

Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 18 10:59:03 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL248013: SelectionDAGDumper: Leave out the <multiple use> markers (authored by matze).

Changed prior to commit:
  http://reviews.llvm.org/D12569?vs=33833&id=35112#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D12569

Files:
  llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp

Index: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
===================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
@@ -586,9 +586,6 @@
   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);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12569.35112.patch
Type: text/x-patch
Size: 571 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150918/21ce7a4a/attachment.bin>


More information about the llvm-commits mailing list