[IR] Remove unnecessary override of operator new in ExtractValueInst. It's already inherited from UnaryInstruction. NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2017-06-10 06:58:19 +00:00
parent 2d0aa2e9ba
commit 95270b9920

View File

@ -2331,9 +2331,6 @@ class ExtractValueInst : public UnaryInstruction {
ArrayRef<unsigned> Idxs,
const Twine &NameStr, BasicBlock *InsertAtEnd);
// allocate space for exactly one operand
void *operator new(size_t s) { return User::operator new(s, 1); }
void init(ArrayRef<unsigned> Idxs, const Twine &NameStr);
protected: