When printing DS nodes, print the mergemap index as well to allow easier

debugging of merging process.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4010 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-02 05:17:55 +00:00
parent 8b719877b1
commit 9cfb358fa4

View File

@ -100,7 +100,7 @@ void DSNode::print(std::ostream &O, const DSGraph *G) const {
O << "|{";
for (unsigned i = 0; i < getSize(); ++i) {
if (i) O << "|";
O << "<g" << i << ">";
O << "<g" << i << ">" << (int)MergeMap[i];
}
O << "}";
}