diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-15 02:26:10 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-15 02:26:10 +0000 |
commit | 9d6565a5b1fbc4286d6ee638d8f47a3171a9ed7e (patch) | |
tree | 6bac879128a02cb08acd536416a5f2d32fb465a7 /include/llvm/Bytecode/BytecodeHandler.h | |
parent | b7d61101b1a9e28541470e05af1321fea76f08e5 (diff) |
For PR1195:
Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and
PackedTyID -> VectorTyID. No functional changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34293 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode/BytecodeHandler.h')
-rw-r--r-- | include/llvm/Bytecode/BytecodeHandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Bytecode/BytecodeHandler.h b/include/llvm/Bytecode/BytecodeHandler.h index 4084efa14c..eeae2a58d6 100644 --- a/include/llvm/Bytecode/BytecodeHandler.h +++ b/include/llvm/Bytecode/BytecodeHandler.h @@ -23,7 +23,7 @@ namespace llvm { class ArrayType; class StructType; class PointerType; -class PackedType; +class VectorType; class ConstantArray; class Module; @@ -242,8 +242,8 @@ public: ) {} /// @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 |