diff options
author | Dan Gohman <gohman@apple.com> | 2007-06-18 15:30:16 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-06-18 15:30:16 +0000 |
commit | 7a0a4fc9127039cc7c55d74994fe7790ac30de43 (patch) | |
tree | 4aff5185ce4eef59f7417d054b81994b107c919f /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | 638c96d3914739a669fce153d8b2530ea93a72c6 (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.cpp | 2 |
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 ""; } |