emit simple node was using different labels for fields than the rest of the graph...
authorAndrew Lenharth <andrewl@lenharth.org>
Thu, 23 Jul 2009 15:24:38 +0000 (15:24 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Thu, 23 Jul 2009 15:24:38 +0000 (15:24 +0000)
llvm-svn: 76879

llvm/include/llvm/Support/GraphWriter.h

index 3ebfca2b30d98b9fb0e5219438cd45f086cbf00c..26db5fd655f662c9380a5fdbec22c21d292fa31c 100644 (file)
@@ -233,7 +233,7 @@ public:
 
       for (unsigned i = 0; i != NumEdgeSources; ++i) {
         if (i) O << "|";
-        O << "<g" << i << ">";
+        O << "<s" << i << ">";
         if (EdgeSourceLabels) O << (*EdgeSourceLabels)[i];
       }
       O << "}}";