mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
Initialize ArgTypes directly instead of manually copying in the elements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48195 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f25275cb3c
commit
450e7c3c54
@ -1050,10 +1050,7 @@ class FunctionValType {
|
||||
bool isVarArg;
|
||||
public:
|
||||
FunctionValType(const Type *ret, const std::vector<const Type*> &args,
|
||||
bool isVA) : RetTy(ret), isVarArg(isVA) {
|
||||
for (unsigned i = 0; i < args.size(); ++i)
|
||||
ArgTypes.push_back(args[i]);
|
||||
}
|
||||
bool isVA) : RetTy(ret), ArgTypes(args), isVarArg(isVA) {}
|
||||
|
||||
static FunctionValType get(const FunctionType *FT);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user