[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp

Dan Gohman djg at cray.com
Mon Jun 18 08:30:38 PDT 2007



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGPrinter.cpp updated: 1.46 -> 1.47
---
Log message:

Make chain dependencies blue, in addition to being dashed.


---
Diffs of the changes:  (+1 -1)

 SelectionDAGPrinter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp:1.46 llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp:1.47
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp:1.46	Fri May 18 12:52:13 2007
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp	Mon Jun 18 10:30:16 2007
@@ -51,7 +51,7 @@
       if (VT == MVT::Flag)
         return "color=red,style=bold";
       else if (VT == MVT::Other)
-        return "style=dashed";
+        return "color=blue,style=dashed";
       return "";
     }
     






More information about the llvm-commits mailing list