summaryrefslogtreecommitdiff
path: root/lib/VMCore/Type.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-15 03:39:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-15 03:39:18 +0000
commitac9dcb94dde5f166ee29372385c0e3b695227ab4 (patch)
tree468a925b8be61cdf917f1203ba57ac2a419b59a6 /lib/VMCore/Type.cpp
parenta85210ac66ef8a60587c3557a41a4e81c8989579 (diff)
downloadllvm-ac9dcb94dde5f166ee29372385c0e3b695227ab4.tar.gz
llvm-ac9dcb94dde5f166ee29372385c0e3b695227ab4.tar.bz2
llvm-ac9dcb94dde5f166ee29372385c0e3b695227ab4.tar.xz
For PR1195:
Change use of "packed" term to "vector" in comments, strings, variable names, etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Type.cpp')
-rw-r--r--lib/VMCore/Type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp
index b70b7c5ba3..da5cdb7452 100644
--- a/lib/VMCore/Type.cpp
+++ b/lib/VMCore/Type.cpp
@@ -110,7 +110,7 @@ bool Type::canLosslesslyBitCastTo(const Type *Ty) const {
if (!this->isFirstClassType() || !Ty->isFirstClassType())
return false;
- // Packed -> Packed conversions are always lossless if the two packed types
+ // Vector -> Vector conversions are always lossless if the two vector types
// have the same size, otherwise not.
if (const VectorType *thisPTy = dyn_cast<VectorType>(this))
if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty))