From: Chris Lattner Date: Wed, 2 Oct 2002 05:17:55 +0000 (+0000) Subject: When printing DS nodes, print the mergemap index as well to allow easier X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9cfb358fa4d18cba18721c913a0465ff8ace28fd;p=oota-llvm.git 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 f6c36e42c2d..528652b5fd8 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 << ""; + O << "" << (int)MergeMap[i]; } O << "}"; }