- Remove Value::use_push_back & Value::use_remove

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-09 00:25:01 +00:00
parent cd484a47ea
commit 4e5e2edf6a

View File

@ -110,9 +110,8 @@ public:
inline User *use_back() { return Uses.back(); }
inline const User *use_back() const { return Uses.back(); }
inline void use_push_back(User *I) { Uses.push_back(I); }
User *use_remove(use_iterator &I);
/// addUse/killUse - These two methods should only be used by the Use class
/// below.
inline void addUse(User *I) { Uses.push_back(I); }
void killUse(User *I);
};