From: Tobias Grosser Date: Mon, 30 Nov 2009 13:14:13 +0000 (+0000) Subject: Remove forgotten ShortNames in Trie and CompilationGraph X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b5eedf2c1c4d3b7ccd6e0db6c0d1cafb502d5adc;p=oota-llvm.git Remove forgotten ShortNames in Trie and CompilationGraph git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90135 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/Trie.h b/include/llvm/ADT/Trie.h index b415990b222..6b150c8fffa 100644 --- a/include/llvm/ADT/Trie.h +++ b/include/llvm/ADT/Trie.h @@ -309,8 +309,7 @@ struct DOTGraphTraits > : public DefaultDOTGraphTraits { return "Trie"; } - static std::string getNodeLabel(NodeType* Node, const Trie& T, - bool ShortNames) { + static std::string getNodeLabel(NodeType* Node, const Trie& T) { if (T.getRoot() == Node) return ""; else diff --git a/lib/CompilerDriver/CompilationGraph.cpp b/lib/CompilerDriver/CompilationGraph.cpp index bb0eb7bcf19..5781cdad906 100644 --- a/lib/CompilerDriver/CompilationGraph.cpp +++ b/lib/CompilerDriver/CompilationGraph.cpp @@ -473,8 +473,7 @@ namespace llvm { { template - 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())