diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 13:14:13 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 13:14:13 +0000 |
commit | 0729c6e281e0c3c465fab65546d427064312024f (patch) | |
tree | 9e6930a67eb6b718c49d13f956f0453183ec2bcb | |
parent | dd7f2e797f08d5bf9b3df54a15b36dc48343a087 (diff) | |
download | bcm5719-llvm-0729c6e281e0c3c465fab65546d427064312024f.tar.gz bcm5719-llvm-0729c6e281e0c3c465fab65546d427064312024f.zip |
Remove forgotten ShortNames in Trie and CompilationGraph
llvm-svn: 90135
-rw-r--r-- | llvm/include/llvm/ADT/Trie.h | 3 | ||||
-rw-r--r-- | llvm/lib/CompilerDriver/CompilationGraph.cpp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/llvm/include/llvm/ADT/Trie.h b/llvm/include/llvm/ADT/Trie.h index b415990b222..6b150c8fffa 100644 --- a/llvm/include/llvm/ADT/Trie.h +++ b/llvm/include/llvm/ADT/Trie.h @@ -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 diff --git a/llvm/lib/CompilerDriver/CompilationGraph.cpp b/llvm/lib/CompilerDriver/CompilationGraph.cpp index bb0eb7bcf19..5781cdad906 100644 --- a/llvm/lib/CompilerDriver/CompilationGraph.cpp +++ b/llvm/lib/CompilerDriver/CompilationGraph.cpp @@ -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()) |