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 << "}";
   }