1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Remove forgotten ShortNames in Trie and CompilationGraph

llvm-svn: 90135
This commit is contained in:
Tobias Grosser 2009-11-30 13:14:13 +00:00
parent 74c7605daf
commit 246c05c351
2 changed files with 2 additions and 4 deletions

View 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

View 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())