this method is never called.
authorChris Lattner <sabre@nondot.org>
Sun, 6 Mar 2005 06:00:24 +0000 (06:00 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 6 Mar 2005 06:00:24 +0000 (06:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20487 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/SymbolTable.h

index 6514f95a1addc64b9b04701d7bbe0b3d49292f1c..fab16f02342fd311f087e46a59365709461f9c87 100644 (file)
@@ -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
 /// @{