From 8c7333266c62e63d5e2a9336eaaef36fea58aa68 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 18 Jun 2007 15:30:16 +0000 Subject: [PATCH] Make chain dependencies blue, in addition to being dashed. llvm-svn: 37626 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index dbe101f9f473..12b568262483 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 ""; }