mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-08 20:30:50 +00:00
Add a (disabled by default) way to view the ID of a node.
llvm-svn: 42978
This commit is contained in:
parent
c3a75c628d
commit
0841469ff0
@ -172,6 +172,10 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
|
||||
Op = Op + "<trunc " + MVT::getValueTypeString(ST->getStoredVT()) + ">";
|
||||
Op += ST->getIndexedModeName(ST->getAddressingMode());
|
||||
}
|
||||
|
||||
#if 0
|
||||
Op += " Id=" + itostr(Node->getNodeId());
|
||||
#endif
|
||||
|
||||
return Op;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user