summaryrefslogtreecommitdiff
path: root/lib/CodeGen/ScheduleDAGPrinter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-21 02:18:56 +0000
committerDan Gohman <gohman@apple.com>2008-11-21 02:18:56 +0000
commit98adea11496400c8385b774b4d9f9acd4c99d254 (patch)
treebd018a39e7214d5af8297ef019daf7cd96d6a6c5 /lib/CodeGen/ScheduleDAGPrinter.cpp
parent52a5899fd98d2b922c57a0a35992f908392cfe52 (diff)
downloadllvm-98adea11496400c8385b774b4d9f9acd4c99d254.tar.gz
llvm-98adea11496400c8385b774b4d9f9acd4c99d254.tar.bz2
llvm-98adea11496400c8385b774b4d9f9acd4c99d254.tar.xz
Rename SDep's isSpecial to isArtificial, to make this field a little
less mysterious. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ScheduleDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/ScheduleDAGPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ScheduleDAGPrinter.cpp b/lib/CodeGen/ScheduleDAGPrinter.cpp
index b5d030c1b8..2f0e662c6b 100644
--- a/lib/CodeGen/ScheduleDAGPrinter.cpp
+++ b/lib/CodeGen/ScheduleDAGPrinter.cpp
@@ -50,7 +50,7 @@ namespace llvm {
/// edge, override this method.
template<typename EdgeIter>
static std::string getEdgeAttributes(const void *Node, EdgeIter EI) {
- if (EI.isSpecialDep())
+ if (EI.isArtificialDep())
return "color=cyan,style=dashed";
if (EI.isCtrlDep())
return "color=blue,style=dashed";