[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp
Reid Spencer
reid at x10sys.com
Wed Feb 14 19:40:02 PST 2007
Changes in directory llvm/tools/llvm2cpp:
CppWriter.cpp updated: 1.39 -> 1.40
---
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)
CppWriter.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm2cpp/CppWriter.cpp
diff -u llvm/tools/llvm2cpp/CppWriter.cpp:1.39 llvm/tools/llvm2cpp/CppWriter.cpp:1.40
--- llvm/tools/llvm2cpp/CppWriter.cpp:1.39 Wed Feb 14 20:26:10 2007
+++ llvm/tools/llvm2cpp/CppWriter.cpp Wed Feb 14 21:39:18 2007
@@ -338,7 +338,7 @@
case Type::ArrayTyID: prefix = "ArrayTy_"; break;
case Type::PointerTyID: prefix = "PointerTy_"; break;
case Type::OpaqueTyID: prefix = "OpaqueTy_"; break;
- case Type::VectorTyID: prefix = "PackedTy_"; break;
+ case Type::VectorTyID: prefix = "VectorTy_"; break;
default: prefix = "OtherTy_"; break; // prevent breakage
}
More information about the llvm-commits
mailing list