OSDN Git Service

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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76879 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/GraphWriter.h

index 3ebfca2..26db5fd 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 << "}}";