commit | 713a98dee8ab07a3066d1707a07648d27dd0c19c | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Wed Sep 19 01:38:40 2007 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Wed Sep 19 01:38:40 2007 +0000 |
tree | 54c0efe9349233ea62e126f50444d2eddbdddb95 | |
parent | dcfa73fe3cf9b67573b188424477bc22ed900adf [diff] [blame] |
Use struct SDep instead of std::pair for SUnit pred and succ lists. First step in tracking physical register output dependencies. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42125 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index d03439b..73902b8 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -264,7 +264,7 @@ /// edge, override this method. template<typename EdgeIter> static std::string getEdgeAttributes(const void *Node, EdgeIter EI) { - if (EI.isChain()) + if (EI.isCtrlDep()) return "color=blue,style=dashed"; return ""; }