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 | 8c7333266c62e63d5e2a9336eaaef36fea58aa68 (patch) | |
tree | 6e92323a7caa3e7acfd4053eac86e4437f8a2a65 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | c98815ba321d3ede9cd1a8ecd85b3df9245d2b66 (diff) | |
download | bcm5719-llvm-8c7333266c62e63d5e2a9336eaaef36fea58aa68.tar.gz bcm5719-llvm-8c7333266c62e63d5e2a9336eaaef36fea58aa68.zip |
Make chain dependencies blue, in addition to being dashed.
llvm-svn: 37626
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index dbe101f9f47..12b56826248 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/llvm/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 ""; } |