mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Remove dtor's that simply call dropAllReferences
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -62,7 +62,6 @@ public:
|
||||
Operands.reserve(1);
|
||||
Operands.push_back(Use(S, this));
|
||||
}
|
||||
inline ~UnaryOperator() { dropAllReferences(); }
|
||||
|
||||
virtual Instruction *clone() const {
|
||||
return create(getInstType(), Operands[0]);
|
||||
@@ -95,7 +94,6 @@ public:
|
||||
assert(Operands[0] && Operands[1] &&
|
||||
Operands[0]->getType() == Operands[1]->getType());
|
||||
}
|
||||
inline ~BinaryOperator() { dropAllReferences(); }
|
||||
|
||||
virtual Instruction *clone() const {
|
||||
return create(getInstType(), Operands[0], Operands[1]);
|
||||
|
Reference in New Issue
Block a user