From: Chris Lattner Date: Sun, 21 Oct 2001 21:54:51 +0000 (+0000) Subject: Fix erroneous assertion failure on the following code: X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bfabd8877dce8e5942e1cddd9e945dc48e2276cd;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index fc718d6887f..3f73933690d 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -26,7 +26,7 @@ CallInst::CallInst(Value *Meth, const vector ¶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));