From 9cfb358fa4d18cba18721c913a0465ff8ace28fd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 2 Oct 2002 05:17:55 +0000 Subject: [PATCH] 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 --- lib/Analysis/DataStructure/Printer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 << "}"; } -- 2.34.1