From: Dan Gohman Date: Tue, 16 Dec 2008 00:55:00 +0000 (+0000) Subject: This getEdgeAttributes doesn't need a template argument. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3ee7449f3973fa467388d66d27124da22f45df85;p=oota-llvm.git This getEdgeAttributes doesn't need a template argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61065 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/ScheduleDAGPrinter.cpp b/lib/CodeGen/ScheduleDAGPrinter.cpp index 2f0e662c6bd..25539604576 100644 --- a/lib/CodeGen/ScheduleDAGPrinter.cpp +++ b/lib/CodeGen/ScheduleDAGPrinter.cpp @@ -48,8 +48,8 @@ namespace llvm { /// If you want to override the dot attributes printed for a particular /// edge, override this method. - template - static std::string getEdgeAttributes(const void *Node, EdgeIter EI) { + static std::string getEdgeAttributes(const SUnit *Node, + SUnitIterator EI) { if (EI.isArtificialDep()) return "color=cyan,style=dashed"; if (EI.isCtrlDep())