From: Dan Gohman Date: Mon, 18 Jun 2007 15:30:16 +0000 (+0000) Subject: Make chain dependencies blue, in addition to being dashed. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7a0a4fc9127039cc7c55d74994fe7790ac30de43;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index dbe101f9f47..12b56826248 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 ""; }