summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-22 17:52:59 +0000
committerDan Gohman <gohman@apple.com>2008-07-22 17:52:59 +0000
commit694caf56f15bec971d493069a1613a8f992f510a (patch)
treebd5a4da782dd504116c21f04dd5485247f8d10e3 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parent04dda73926d481b8e970703c19fbd1d5a0a10722 (diff)
downloadllvm-694caf56f15bec971d493069a1613a8f992f510a.tar.gz
llvm-694caf56f15bec971d493069a1613a8f992f510a.tar.bz2
llvm-694caf56f15bec971d493069a1613a8f992f510a.tar.xz
Make the GraphRoot edge look like a chain edge, which is more accurate,
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
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index 184c50e903..4bcd916ff8 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -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");
}
};
}