forked from OSchip/llvm-project
Fix the logic in this assertion to properly validate the number
of arguments. llvm-svn: 64999
This commit is contained in:
parent
82191d0413
commit
c0ae249b22
|
@ -356,8 +356,9 @@ GenericValue JIT::runFunction(Function *F,
|
|||
const FunctionType *FTy = F->getFunctionType();
|
||||
const Type *RetTy = FTy->getReturnType();
|
||||
|
||||
assert((FTy->getNumParams() <= ArgValues.size() || FTy->isVarArg()) &&
|
||||
"Too many arguments passed into function!");
|
||||
assert((FTy->getNumParams() == ArgValues.size() ||
|
||||
(FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
|
||||
"Wrong number of arguments passed into function!");
|
||||
assert(FTy->getNumParams() == ArgValues.size() &&
|
||||
"This doesn't support passing arguments through varargs (yet)!");
|
||||
|
||||
|
|
Loading…
Reference in New Issue