mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Remove forgotten ShortNames in Trie and CompilationGraph
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90135 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
56f4ef3232
commit
b5eedf2c1c
@ -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
|
||||
|
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user