diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-09-19 01:38:40 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-09-19 01:38:40 +0000 |
commit | 713a98dee8ab07a3066d1707a07648d27dd0c19c (patch) | |
tree | 54c0efe9349233ea62e126f50444d2eddbdddb95 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | dcfa73fe3cf9b67573b188424477bc22ed900adf (diff) |
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
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index d03439b4c4..73902b870b 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp @@ -264,7 +264,7 @@ namespace llvm { /// 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 ""; } |