Fix a copy+paste error in a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51821 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-05-31 19:09:47 +00:00
parent 35651cdf0b
commit 8e6404180c

View File

@ -1529,7 +1529,7 @@ class ExtractValueInst : public Instruction {
ExtractValueInst(Value *Agg, unsigned Idx,
const std::string &Name, BasicBlock *InsertAtEnd);
public:
// allocate space for exactly two operands
// allocate space for exactly one operand
void *operator new(size_t s) {
return User::operator new(s, 1);
}