[llvm-commits] CVS: llvm/utils/TableGen/IntrinsicEmitter.cpp

Reid Spencer reid at x10sys.com
Wed Feb 14 19:40:07 PST 2007



Changes in directory llvm/utils/TableGen:

IntrinsicEmitter.cpp updated: 1.26 -> 1.27
---
Log message:

For PR1195: http://llvm.org/PR1195 :
Change use of "packed" term to "vector" in comments, strings, variable
names, etc.


---
Diffs of the changes:  (+1 -1)

 IntrinsicEmitter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/utils/TableGen/IntrinsicEmitter.cpp
diff -u llvm/utils/TableGen/IntrinsicEmitter.cpp:1.26 llvm/utils/TableGen/IntrinsicEmitter.cpp:1.27
--- llvm/utils/TableGen/IntrinsicEmitter.cpp:1.26	Wed Feb 14 20:26:10 2007
+++ llvm/utils/TableGen/IntrinsicEmitter.cpp	Wed Feb 14 21:39:18 2007
@@ -119,7 +119,7 @@
   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") << ", ";






More information about the llvm-commits mailing list