[llvm-commits] [llvm] r51821 - /llvm/trunk/include/llvm/Instructions.h

Dan Gohman gohman at apple.com
Sat May 31 12:09:48 PDT 2008


Author: djg
Date: Sat May 31 14:09:47 2008
New Revision: 51821

URL: http://llvm.org/viewvc/llvm-project?rev=51821&view=rev
Log:
Fix a copy+paste error in a comment.

Modified:
    llvm/trunk/include/llvm/Instructions.h

Modified: llvm/trunk/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Instructions.h?rev=51821&r1=51820&r2=51821&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Instructions.h (original)
+++ llvm/trunk/include/llvm/Instructions.h Sat May 31 14:09:47 2008
@@ -1529,7 +1529,7 @@
   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);
   }





More information about the llvm-commits mailing list