mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Use a SmallVector for intrinsic argument types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a48ed4fc8f
commit
d2c6ff1ac6
@ -83,7 +83,7 @@ bool BlackfinIntrinsicInfo::isOverloaded(unsigned IntrID) const {
|
||||
|
||||
static FunctionType *getType(LLVMContext &Context, unsigned id) {
|
||||
Type *ResultTy = NULL;
|
||||
std::vector<Type*> ArgTys;
|
||||
SmallVector<Type*, 8> ArgTys;
|
||||
bool IsVarArg = false;
|
||||
|
||||
#define GET_INTRINSIC_GENERATOR
|
||||
|
@ -92,7 +92,7 @@ bool MBlazeIntrinsicInfo::isOverloaded(unsigned IntrID) const {
|
||||
|
||||
static FunctionType *getType(LLVMContext &Context, unsigned id) {
|
||||
Type *ResultTy = NULL;
|
||||
std::vector<Type*> ArgTys;
|
||||
SmallVector<Type*, 8> ArgTys;
|
||||
bool IsVarArg = false;
|
||||
|
||||
#define GET_INTRINSIC_GENERATOR
|
||||
|
@ -359,7 +359,7 @@ std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) {
|
||||
FunctionType *Intrinsic::getType(LLVMContext &Context,
|
||||
ID id, ArrayRef<Type*> Tys) {
|
||||
Type *ResultTy = NULL;
|
||||
std::vector<Type*> ArgTys;
|
||||
SmallVector<Type*, 8> ArgTys;
|
||||
bool IsVarArg = false;
|
||||
|
||||
#define GET_INTRINSIC_GENERATOR
|
||||
|
Loading…
x
Reference in New Issue
Block a user