aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-06 06:00:24 +0000
committerChris Lattner <sabre@nondot.org>2005-03-06 06:00:24 +0000
commitc0d369d879a205011e11891d1cfc54ea895d4cc8 (patch)
tree887d85b474d421893946279450abe28c0e5292fe
parent55c0461d266d066a9605207775d73751133431f5 (diff)
this method is never called.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20487 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/SymbolTable.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h
index 6514f95a1a..fab16f0234 100644
--- a/include/llvm/SymbolTable.h
+++ b/include/llvm/SymbolTable.h
@@ -255,17 +255,6 @@ public:
return pmap.find(Typ);
}
- /// This method returns a ValueMap* for a specific type plane. This
- /// interface is deprecated and may go away in the future.
- /// @deprecated
- /// @brief Find a type plane
- inline const ValueMap* findPlane(const Type* Typ) const {
- assert(Typ && "Can't find type plane with null type!");
- plane_const_iterator I = pmap.find(Typ);
- if (I == pmap.end()) return 0;
- return &I->second;
- }
-
/// @}
/// @name Internal Methods
/// @{