commit | 9cfb358fa4d18cba18721c913a0465ff8ace28fd | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Oct 02 05:17:55 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Oct 02 05:17:55 2002 +0000 |
tree | 53ac0f8f39ebcd9a3b962dfb8d338d0da6b69c78 | |
parent | 8b719877b1b49eb08649d63a0f05f2af3119eb65 [diff] [blame] |
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
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index f6c36e4..528652b 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp
@@ -100,7 +100,7 @@ O << "|{"; for (unsigned i = 0; i < getSize(); ++i) { if (i) O << "|"; - O << "<g" << i << ">"; + O << "<g" << i << ">" << (int)MergeMap[i]; } O << "}"; }