summaryrefslogtreecommitdiffstats
path: root/llvm/utils
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
commit09575bac2e45bd4d0482d19db619e8d251a4389b (patch)
treec663b88733121d07ace82b721615431f7ef91c80 /llvm/utils
parentd4a0b7bb7b14fb94d0f3f0dfd8697fa4c82cff53 (diff)
downloadbcm5719-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/utils')
-rw-r--r--llvm/utils/TableGen/IntrinsicEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/IntrinsicEmitter.cpp b/llvm/utils/TableGen/IntrinsicEmitter.cpp
index 214f3104905..faa750daee2 100644
--- a/llvm/utils/TableGen/IntrinsicEmitter.cpp
+++ b/llvm/utils/TableGen/IntrinsicEmitter.cpp
@@ -119,7 +119,7 @@ static bool EmitTypeVerify(std::ostream &OS, Record *ArgType) {
if (ArgType->isSubClassOf("LLVMIntegerType"))
OS << ArgType->getValueAsInt("Width") << ", ";
- // If this is a packed type, check that the subtype and size are correct.
+ // If this is a vector type, check that the subtype and size are correct.
else if (ArgType->isSubClassOf("LLVMVectorType")) {
EmitTypeVerify(OS, ArgType->getValueAsDef("ElTy"));
OS << ArgType->getValueAsInt("NumElts") << ", ";
OpenPOWER on IntegriCloud