mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-21 03:37:47 +00:00
Fix erroneous assertion failure on the following code:
declare int "malloc"(...) ... %reg112 = call int (...) * %malloc( uint %cast1007 ) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@932 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
23192ebe95
commit
bfabd8877d
@ -26,7 +26,7 @@ CallInst::CallInst(Value *Meth, const vector<Value*> ¶ms,
|
||||
|
||||
const MethodType::ParamTypes &PL = MTy->getParamTypes();
|
||||
assert((params.size() == PL.size()) ||
|
||||
(MTy->isVarArg() && params.size() >= PL.size()-1) &&
|
||||
(MTy->isVarArg() && params.size() >= PL.size()) &&
|
||||
"Calling a function with bad signature");
|
||||
for (unsigned i = 0; i < params.size(); i++)
|
||||
Operands.push_back(Use(params[i], this));
|
||||
|
Loading…
x
Reference in New Issue
Block a user