diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-21 02:18:56 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-21 02:18:56 +0000 |
commit | 67b35bd4d1344075ab06520e9d741d39dc59cce0 (patch) | |
tree | ad3e1d4ac00cc63541ed83f3000855602aa89023 /llvm/lib/CodeGen/ScheduleDAGPrinter.cpp | |
parent | d10202bfb14cf9eff68f845fe40b10c05a541892 (diff) | |
download | bcm5719-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.cpp | 2 |
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"; |