diff options
author | Dan Gohman <gohman@apple.com> | 2007-07-16 14:29:03 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-07-16 14:29:03 +0000 |
commit | 07a96765daedf180a7102d39fe56c499878312b7 (patch) | |
tree | d64631240d2aad80b33853dd3c5f9ee82abac6d6 /lib/VMCore/Verifier.cpp | |
parent | 318f0dee83a536061bc4c2aab825a50deb1cd10f (diff) |
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 'lib/VMCore/Verifier.cpp')
-rw-r--r-- | lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 4e3a16e8ee..a40d197aa2 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -1109,7 +1109,7 @@ void Verifier::VerifyIntrinsicPrototype(Intrinsic::ID ID, Function *F, ...) { break; } } else if (TypeID == Type::VectorTyID) { - // If this is a packed argument, verify the number and type of elements. + // If this is a vector argument, verify the number and type of elements. const VectorType *PTy = cast<VectorType>(Ty); int ElemTy = va_arg(VA, int); if (ElemTy != PTy->getElementType()->getTypeID()) { |