aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-06-18 15:30:16 +0000
committerDan Gohman <gohman@apple.com>2007-06-18 15:30:16 +0000
commit7a0a4fc9127039cc7c55d74994fe7790ac30de43 (patch)
tree4aff5185ce4eef59f7417d054b81994b107c919f /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parent638c96d3914739a669fce153d8b2530ea93a72c6 (diff)
Make chain dependencies blue, in addition to being dashed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37626 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index dbe101f9f4..12b5682624 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -51,7 +51,7 @@ namespace llvm {
if (VT == MVT::Flag)
return "color=red,style=bold";
else if (VT == MVT::Other)
- return "style=dashed";
+ return "color=blue,style=dashed";
return "";
}