this method is never called.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20487 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-03-06 06:00:24 +00:00
parent 55c0461d26
commit c0d369d879

View 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
/// @{