aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/User.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/User.h')
-rw-r--r--include/llvm/User.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h
index 0392e20bda..1ea5e189ba 100644
--- a/include/llvm/User.h
+++ b/include/llvm/User.h
@@ -37,10 +37,6 @@ protected:
///
unsigned NumOperands;
- static void destroyThis(User*v) {
- Value::destroyThis(v);
- }
- friend class Value;
public:
User(const Type *Ty, unsigned vty, Use *OpList, unsigned NumOps)
: Value(Ty, vty), OperandList(OpList), NumOperands(NumOps) {}