diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 12:38:47 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2009-11-30 12:38:47 +0000 |
commit | 56f4ef3232850e29c4635d0923910acce8887bd0 (patch) | |
tree | 904086d0665c9d480a8f0f3b1da2d78330406567 /include/llvm/Support/DOTGraphTraits.h | |
parent | a10d598602308549d87d2c5d9848f5a72fda2b43 (diff) | |
download | external_llvm-56f4ef3232850e29c4635d0923910acce8887bd0.tar.gz external_llvm-56f4ef3232850e29c4635d0923910acce8887bd0.tar.bz2 external_llvm-56f4ef3232850e29c4635d0923910acce8887bd0.zip |
Remove ShortNames from getNodeLabel in DOTGraphTraits
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/DOTGraphTraits.h')
-rw-r--r-- | include/llvm/Support/DOTGraphTraits.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Support/DOTGraphTraits.h b/include/llvm/Support/DOTGraphTraits.h index 0e8f59bdeb..54ced15321 100644 --- a/include/llvm/Support/DOTGraphTraits.h +++ b/include/llvm/Support/DOTGraphTraits.h @@ -62,8 +62,7 @@ public: /// getNodeLabel - Given a node and a pointer to the top level graph, return /// the label to print in the node. template<typename GraphType> - static std::string getNodeLabel(const void *Node, - const GraphType& Graph, bool ShortNames) { + std::string getNodeLabel(const void *Node, const GraphType& Graph) { return ""; } |