diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-02 05:17:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-02 05:17:55 +0000 |
commit | 9cfb358fa4d18cba18721c913a0465ff8ace28fd (patch) | |
tree | 53ac0f8f39ebcd9a3b962dfb8d338d0da6b69c78 /lib/Analysis/DataStructure | |
parent | 8b719877b1b49eb08649d63a0f05f2af3119eb65 (diff) |
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
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/Printer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index f6c36e42c2..528652b5fd 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -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 << "}"; } |