Print node ID's in dumps and views if set.

llvm-svn: 96971
This commit is contained in:
Chris Lattner 2010-02-23 19:31:18 +00:00
parent ff96ccd337
commit 1738d49b74
1 changed files with 3 additions and 0 deletions

View File

@ -5926,6 +5926,9 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
if (G)
if (unsigned Order = G->GetOrdering(this))
OS << " [ORD=" << Order << ']';
if (getNodeId() != -1)
OS << " [ID=" << getNodeId() << ']';
}
void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {