Make the GraphRoot edge look like a chain edge, which is more accurate,
authorDan Gohman <gohman@apple.com>
Tue, 22 Jul 2008 17:52:59 +0000 (17:52 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 22 Jul 2008 17:52:59 +0000 (17:52 +0000)
and use the right result number, in the off chance that the graph root
has multiple result values.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53923 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp

index 184c50e9037d245c871fdba395c157338cedb6a6..4bcd916ff845f8539c086ec7bdf2150da47770cf 100644 (file)
@@ -110,7 +110,8 @@ namespace llvm {
                                        GraphWriter<SelectionDAG*> &GW) {
       GW.emitSimpleNode(0, "plaintext=circle", "GraphRoot");
       if (G->getRoot().Val)
-        GW.emitEdge(0, -1, G->getRoot().Val, -1, "");
+        GW.emitEdge(0, -1, G->getRoot().Val, G->getRoot().ResNo,
+                    "color=blue,style=dashed");
     }
   };
 }