aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/TypeSymbolTable.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-07 05:29:34 +0000
committerChris Lattner <sabre@nondot.org>2007-02-07 05:29:34 +0000
commit67408dab1b50e17decf788c119ca0194fc7024a6 (patch)
treeec13e8c5795975d99190b307bc17ae207499536e /include/llvm/TypeSymbolTable.h
parentf5111552c24d0dcea3b7b1a9c0d2c1f338191891 (diff)
TypeSymbolTable::rename is dead, remove it
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33982 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/TypeSymbolTable.h')
-rw-r--r--include/llvm/TypeSymbolTable.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/TypeSymbolTable.h b/include/llvm/TypeSymbolTable.h
index b95415377e..ffea6d7340 100644
--- a/include/llvm/TypeSymbolTable.h
+++ b/include/llvm/TypeSymbolTable.h
@@ -118,10 +118,6 @@ public:
/// @returns true if the erase was successful (TI was found)
bool remove(Type* TI);
- /// Rename a type. This ain't fast, we have to linearly search for it first.
- /// @returns true if the rename was successful (type was found)
- bool rename(Type* T, const std::string& new_name);
-
/// @}
/// @name AbstractTypeUser Methods
/// @{