diff options
| author | Dan Gohman <gohman@apple.com> | 2008-05-31 19:09:47 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-05-31 19:09:47 +0000 |
| commit | 8e6404180c8b713696815170acaae3c0a428dd40 (patch) | |
| tree | 1323bb0b53a66de3515d634cbf4a31f7529be3a5 | |
| parent | 35651cdf0bbd474349e680a341dbf235bcdb4608 (diff) | |
| download | external_llvm-8e6404180c8b713696815170acaae3c0a428dd40.zip external_llvm-8e6404180c8b713696815170acaae3c0a428dd40.tar.gz external_llvm-8e6404180c8b713696815170acaae3c0a428dd40.tar.bz2 | |
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
| -rw-r--r-- | include/llvm/Instructions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 9393ec4..80a4b60 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -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); } |
