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 | f0bbb440b19963b39a2adcf07c2fb177554d1d9b (patch) | |
tree | 1323bb0b53a66de3515d634cbf4a31f7529be3a5 | |
parent | b44e460004b383f4532ebc45d7166a2a88fc24f7 (diff) | |
download | external_llvm-f0bbb440b19963b39a2adcf07c2fb177554d1d9b.zip external_llvm-f0bbb440b19963b39a2adcf07c2fb177554d1d9b.tar.gz external_llvm-f0bbb440b19963b39a2adcf07c2fb177554d1d9b.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); } |