X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FConstant.h;h=b0a130f81e4773e8aa80f6dd53a783c95c802860;hb=a87008d90b7d894cfca53d407642acfd7be2af3c;hp=12e1dd2db949318cfc464b9d9a87c3c9ff5ecd3c;hpb=944fac71e082cc2664cc71b4d3f6c72bab7143fb;p=oota-llvm.git diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h index 12e1dd2db94..b0a130f81e4 100644 --- a/include/llvm/Constant.h +++ b/include/llvm/Constant.h @@ -33,7 +33,7 @@ namespace llvm { /// 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 @@ public: /// 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(User::getOperand(i));