summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-07 19:00:36 +0000
committerChris Lattner <sabre@nondot.org>2001-07-07 19:00:36 +0000
commit30f24a402c27919e4809f6a54ec4046a921a889f (patch)
treeaf267ad46c8e462115cd22fc1f4df009538b2f1e /include
parentf229ed52484d079f0f71db6300c6596852eced66 (diff)
downloadllvm-30f24a402c27919e4809f6a54ec4046a921a889f.tar.gz
llvm-30f24a402c27919e4809f6a54ec4046a921a889f.tar.bz2
llvm-30f24a402c27919e4809f6a54ec4046a921a889f.tar.xz
Devirtualize User::dropAllReferences
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/User.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h
index 7f2e3e39d8..0305c27816 100644
--- a/include/llvm/User.h
+++ b/include/llvm/User.h
@@ -48,15 +48,15 @@ public:
inline op_iterator op_end() { return Operands.end(); }
inline op_const_iterator op_end() const { return Operands.end(); }
- // dropAllReferences() - This virtual function should be overridden to "let
- // go" of all references that this user is maintaining. This allows one to
+ // dropAllReferences() - This function is in charge of "letting go" of all
+ // objects that this User refers to. This allows one to
// 'delete' a whole class at a time, even though there may be circular
// references... first all references are dropped, and all use counts go to
// zero. Then everything is delete'd for real. Note that no operations are
// valid on an object that has "dropped all references", except operator
// delete.
//
- virtual void dropAllReferences() {
+ inline void dropAllReferences() {
Operands.clear();
}