summaryrefslogtreecommitdiff
path: root/utils/TableGen/IntrinsicEmitter.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 /utils/TableGen/IntrinsicEmitter.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 'utils/TableGen/IntrinsicEmitter.cpp')
-rw-r--r--utils/TableGen/IntrinsicEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp
index 214f310490..faa750daee 100644
--- a/utils/TableGen/IntrinsicEmitter.cpp
+++ b/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") << ", ";