diff options
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Constants.h | 2 | ||||
-rw-r--r-- | include/llvm/DerivedTypes.h | 2 | ||||
-rw-r--r-- | include/llvm/InstrTypes.h | 2 | ||||
-rw-r--r-- | include/llvm/Target/TargetData.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index c14d25d..526f19c 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -412,7 +412,7 @@ public: static ConstantVector *getAllOnesValue(const VectorType *Ty); /// isNullValue - Return true if this is the value that would be returned by - /// getNullValue. This always returns false because zero arrays are always + /// getNullValue. This always returns false because zero vectors are always /// created as ConstantAggregateZero objects. virtual bool isNullValue() const { return false; } diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index 5aaa76e..ba35d78 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -267,7 +267,7 @@ public: }; -/// SequentialType - This is the superclass of the array, pointer and packed +/// SequentialType - This is the superclass of the array, pointer and vector /// type classes. All of these represent "arrays" in memory. The array type /// represents a specifically sized array, pointer types are unsized/unknown /// size arrays, vector types represent specifically sized arrays that diff --git a/include/llvm/InstrTypes.h b/include/llvm/InstrTypes.h index 5439337..d96b20f 100644 --- a/include/llvm/InstrTypes.h +++ b/include/llvm/InstrTypes.h @@ -400,7 +400,7 @@ public: /// A lossless cast is one that does not alter the basic value. It implies /// a no-op cast but is more stringent, preventing things like int->float, - /// long->double, int->ptr, or packed->anything. + /// long->double, int->ptr, or vector->anything. /// @returns true iff the cast is lossless. /// @brief Determine if this is a lossless cast. bool isLosslessCast() const; diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h index 77657e2..5756079 100644 --- a/include/llvm/Target/TargetData.h +++ b/include/llvm/Target/TargetData.h @@ -43,7 +43,7 @@ enum AlignTypeEnum { /// Target alignment element. /// /// Stores the alignment data associated with a given alignment type (pointer, -/// integer, packed/vector, float) and type bit width. +/// integer, vector, float) and type bit width. /// /// @note The unusual order of elements in the structure attempts to reduce /// padding and make the structure slightly more cache friendly. |