mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-11 04:06:20 +00:00
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
This commit is contained in:
parent
bab3fb45e5
commit
77771cfd97
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user