mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
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
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user