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 | f9b1114ae03b624deb0ed6e6d1bb26cc2cd2685e (patch) | |
tree | 42643842a7c6eb24734b97e0c0f29d33d47b87df | |
parent | 810b18c4cc8b022f79f0dd886cc9092a3e4f6d2c (diff) | |
download | external_llvm-f9b1114ae03b624deb0ed6e6d1bb26cc2cd2685e.zip external_llvm-f9b1114ae03b624deb0ed6e6d1bb26cc2cd2685e.tar.gz external_llvm-f9b1114ae03b624deb0ed6e6d1bb26cc2cd2685e.tar.bz2 |
Remove forgotten ShortNames in Trie and CompilationGraph
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90135 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ADT/Trie.h | 3 | ||||
-rw-r--r-- | lib/CompilerDriver/CompilationGraph.cpp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/ADT/Trie.h b/include/llvm/ADT/Trie.h index b415990..6b150c8 100644 --- a/include/llvm/ADT/Trie.h +++ b/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/lib/CompilerDriver/CompilationGraph.cpp b/lib/CompilerDriver/CompilationGraph.cpp index bb0eb7b..5781cda 100644 --- a/lib/CompilerDriver/CompilationGraph.cpp +++ b/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()) |