Remove forgotten ShortNames in Trie and CompilationGraph
authorTobias Grosser <grosser@fim.uni-passau.de>
Mon, 30 Nov 2009 13:14:13 +0000 (13:14 +0000)
committerTobias Grosser <grosser@fim.uni-passau.de>
Mon, 30 Nov 2009 13:14:13 +0000 (13:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90135 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/Trie.h
lib/CompilerDriver/CompilationGraph.cpp

index b415990b2225134f31e9699dac52f5c12a3d15c2..6b150c8fffa0441f52a86f40e7317d7ddfb2c033 100644 (file)
@@ -309,8 +309,7 @@ struct DOTGraphTraits<Trie<Payload> > : public DefaultDOTGraphTraits {
     return "Trie";
   }
 
-  static std::string getNodeLabel(NodeType* Node, const Trie<Payload>& T,
-                                  bool ShortNames) {
+  static std::string getNodeLabel(NodeType* Node, const Trie<Payload>& T) {
     if (T.getRoot() == Node)
       return "<Root>";
     else
index bb0eb7bcf197fe2a48f7a96acb285799921c17dc..5781cdad9062e1f3a4550e3addbd7239c83aab23 100644 (file)
@@ -473,8 +473,7 @@ namespace llvm {
   {
 
     template<typename GraphType>
-    static std::string getNodeLabel(const Node* N, const GraphType&,
-                                    bool ShortNames)
+    static std::string getNodeLabel(const Node* N, const GraphType&)
     {
       if (N->ToolPtr)
         if (N->ToolPtr->IsJoin())