mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 15:36:21 +00:00
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:
parent
8b719877b1
commit
9cfb358fa4
@ -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