diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-15 03:39:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-15 03:39:18 +0000 |
commit | 09575bac2e45bd4d0482d19db619e8d251a4389b (patch) | |
tree | c663b88733121d07ace82b721615431f7ef91c80 /llvm/lib/VMCore/Instructions.cpp | |
parent | d4a0b7bb7b14fb94d0f3f0dfd8697fa4c82cff53 (diff) | |
download | bcm5719-llvm-09575bac2e45bd4d0482d19db619e8d251a4389b.tar.gz bcm5719-llvm-09575bac2e45bd4d0482d19db619e8d251a4389b.zip |
For PR1195:
Change use of "packed" term to "vector" in comments, strings, variable
names, etc.
llvm-svn: 34300
Diffstat (limited to 'llvm/lib/VMCore/Instructions.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp index e591845e403..39fbb3ab7e5 100644 --- a/llvm/lib/VMCore/Instructions.cpp +++ b/llvm/lib/VMCore/Instructions.cpp @@ -1000,7 +1000,7 @@ InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, unsigned IndexV, bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, const Value *Index) { if (!isa<VectorType>(Vec->getType())) - return false; // First operand of insertelement must be packed type. + return false; // First operand of insertelement must be vector type. if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType()) return false;// Second operand of insertelement must be packed element type. |