summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-07-16 14:29:03 +0000
committerDan Gohman <gohman@apple.com>2007-07-16 14:29:03 +0000
commit07a96765daedf180a7102d39fe56c499878312b7 (patch)
treed64631240d2aad80b33853dd3c5f9ee82abac6d6 /include/llvm
parent318f0dee83a536061bc4c2aab825a50deb1cd10f (diff)
downloadllvm-07a96765daedf180a7102d39fe56c499878312b7.tar.gz
llvm-07a96765daedf180a7102d39fe56c499878312b7.tar.bz2
llvm-07a96765daedf180a7102d39fe56c499878312b7.tar.xz
Fix comments about vectors to use the current wording.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39921 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Constants.h2
-rw-r--r--include/llvm/DerivedTypes.h2
-rw-r--r--include/llvm/InstrTypes.h2
-rw-r--r--include/llvm/Target/TargetData.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h
index c14d25d676..526f19c423 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 5aaa76ede3..ba35d783b8 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 5439337224..d96b20f76b 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 77657e2518..5756079c40 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.