mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-11 07:18:44 +00:00
When printing DS nodes, print the mergemap index as well to allow easier
debugging of merging process. llvm-svn: 4010
This commit is contained in:
parent
0851fb32b7
commit
5f38d9c112
@ -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 << "}";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user