mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 03:24:09 +00:00
VMCore: Add Type::getIntN[Ptr]Ty, which are the obvious generic forms of
Type::getInt{1,8,...}[Ptr]Ty, so code can consistently use the methods on Type without occasionally needed to call IntegerType::get. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101111 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -406,6 +406,7 @@ public:
|
||||
static const Type *getX86_FP80Ty(LLVMContext &C);
|
||||
static const Type *getFP128Ty(LLVMContext &C);
|
||||
static const Type *getPPC_FP128Ty(LLVMContext &C);
|
||||
static const IntegerType *getIntNTy(LLVMContext &C, unsigned N);
|
||||
static const IntegerType *getInt1Ty(LLVMContext &C);
|
||||
static const IntegerType *getInt8Ty(LLVMContext &C);
|
||||
static const IntegerType *getInt16Ty(LLVMContext &C);
|
||||
@ -421,6 +422,8 @@ public:
|
||||
static const PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
|
||||
static const PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
|
||||
static const PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
|
||||
static const PointerType *getIntNPtrTy(LLVMContext &C, unsigned N,
|
||||
unsigned AS = 0);
|
||||
static const PointerType *getInt1PtrTy(LLVMContext &C, unsigned AS = 0);
|
||||
static const PointerType *getInt8PtrTy(LLVMContext &C, unsigned AS = 0);
|
||||
static const PointerType *getInt16PtrTy(LLVMContext &C, unsigned AS = 0);
|
||||
|
Reference in New Issue
Block a user