[llvm-commits] [llvm] r57435 - /llvm/trunk/include/llvm/Constant.h

Gabor Greif ggreif at gmail.com
Mon Oct 13 03:28:12 PDT 2008


Author: ggreif
Date: Mon Oct 13 05:28:12 2008
New Revision: 57435

URL: http://llvm.org/viewvc/llvm-project?rev=57435&view=rev
Log:
fix typo's

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

Modified: llvm/trunk/include/llvm/Constant.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Constant.h?rev=57435&r1=57434&r2=57435&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Constant.h (original)
+++ llvm/trunk/include/llvm/Constant.h Mon Oct 13 05:28:12 2008
@@ -33,7 +33,7 @@
 /// Note that Constants are immutable (once created they never change) 
 /// and are fully shared by structural equivalence.  This means that two 
 /// structurally equivalent constants will always have the same address.  
-/// Constant's are created on demand as needed and never deleted: thus clients 
+/// Constants are created on demand as needed and never deleted: thus clients 
 /// don't have to worry about the lifetime of the objects.
 /// @brief LLVM Constant Representation
 class Constant : public User {
@@ -66,7 +66,7 @@
   /// relocations which cannot be resolved at compile time.
   bool ContainsRelocations() const;
 
-  // Specialize get/setOperand for Constant's as their operands are always
+  // Specialize get/setOperand for Constants as their operands are always
   // constants as well.
   Constant *getOperand(unsigned i) {
     return static_cast<Constant*>(User::getOperand(i));





More information about the llvm-commits mailing list