Remove bogus assertion

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5492 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-02-04 16:33:23 +00:00
parent 878e521b1e
commit b8925bce83

View File

@ -102,8 +102,6 @@ void Steens::ResolveFunctionCall(Function *F, const DSCallSite &Call,
if (I != ValMap.end()) // If its a pointer argument...
I->second.mergeWith(Call.getPtrArg(PtrArgIdx++));
}
assert(PtrArgIdx == Call.getNumPtrArgs() && "Argument resolution mismatch!");
}