[llvm-commits] CVS: llvm/include/llvm/Bytecode/BytecodeHandler.h
Reid Spencer
reid at x10sys.com
Wed Feb 14 18:27:26 PST 2007
Changes in directory llvm/include/llvm/Bytecode:
BytecodeHandler.h updated: 1.16 -> 1.17
---
Log message:
For PR1195: http://llvm.org/PR1195 :
Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and
PackedTyID -> VectorTyID. No functional changes.
---
Diffs of the changes: (+3 -3)
BytecodeHandler.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/include/llvm/Bytecode/BytecodeHandler.h
diff -u llvm/include/llvm/Bytecode/BytecodeHandler.h:1.16 llvm/include/llvm/Bytecode/BytecodeHandler.h:1.17
--- llvm/include/llvm/Bytecode/BytecodeHandler.h:1.16 Mon Feb 12 12:53:42 2007
+++ llvm/include/llvm/Bytecode/BytecodeHandler.h Wed Feb 14 20:26:09 2007
@@ -23,7 +23,7 @@
class ArrayType;
class StructType;
class PointerType;
-class PackedType;
+class VectorType;
class ConstantArray;
class Module;
@@ -242,8 +242,8 @@
) {}
/// @brief Handle a constant packed
- virtual void handleConstantPacked(
- const PackedType* PT, ///< Type of the array
+ virtual void handleConstantVector(
+ const VectorType* PT, ///< Type of the array
Constant**ElementSlots, unsigned NumElts,///< Slot nums for packed values
unsigned TypeSlot, ///< Slot # of type
Constant* Val ///< The constant value
More information about the llvm-commits
mailing list