summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit67b35bd4d1344075ab06520e9d741d39dc59cce0 (patch)
treead3e1d4ac00cc63541ed83f3000855602aa89023 /llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
parentd10202bfb14cf9eff68f845fe40b10c05a541892 (diff)
downloadbcm5719-llvm-67b35bd4d1344075ab06520e9d741d39dc59cce0.tar.gz
bcm5719-llvm-67b35bd4d1344075ab06520e9d741d39dc59cce0.zip
Rename SDep's isSpecial to isArtificial, to make this field a little
less mysterious. llvm-svn: 59782
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAGPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/ScheduleDAGPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp b/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
index b5d030c1b81..2f0e662c6bd 100644
--- a/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
+++ b/llvm/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";
OpenPOWER on IntegriCloud