aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ValueSymbolTable.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-06-27 21:26:26 +0000
committerChris Lattner <sabre@nondot.org>2008-06-27 21:26:26 +0000
commit97388469b15fcb8c027377ae0d4a59ba9646f2a7 (patch)
tree64f325415ad5cec88f0498d57876a2e970b212d1 /include/llvm/ValueSymbolTable.h
parent48cd712d4c84507d3098e795aebce8bd5ad05b14 (diff)
downloadexternal_llvm-97388469b15fcb8c027377ae0d4a59ba9646f2a7.tar.gz
external_llvm-97388469b15fcb8c027377ae0d4a59ba9646f2a7.tar.bz2
external_llvm-97388469b15fcb8c027377ae0d4a59ba9646f2a7.zip
implement some fixme's by making "autorenaming" in the value symbol table not
thrash the heap with string stuff (e.g. utostr). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ValueSymbolTable.h')
-rw-r--r--include/llvm/ValueSymbolTable.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/ValueSymbolTable.h b/include/llvm/ValueSymbolTable.h
index 6f79f6f393..752dd2f24f 100644
--- a/include/llvm/ValueSymbolTable.h
+++ b/include/llvm/ValueSymbolTable.h
@@ -76,12 +76,6 @@ public:
/// @brief The number of name/type pairs is returned.
inline unsigned size() const { return unsigned(vmap.size()); }
- /// Given a base name, return a string that is either equal to it or
- /// derived from it that does not already occur in the symbol table
- /// for the specified type.
- /// @brief Get a name unique to this symbol table
- std::string getUniqueName(const std::string &BaseName) const;
-
/// This function can be used from the debugger to display the
/// content of the symbol table while debugging.
/// @brief Print out symbol table on stderr