Fix an assumption that there is a single return value when verifying

overloaded types for intrinsic parameters.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77466 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bob Wilson 2009-07-29 16:25:56 +00:00
parent eb85728970
commit dc297c1f66

View File

@ -1544,9 +1544,9 @@ bool Verifier::PerformTypeCheck(Intrinsic::ID ID, Function *F, const Type *Ty,
return false;
}
} else {
if (Ty != FTy->getParamType(Match - 1)) {
if (Ty != FTy->getParamType(Match - NumRets)) {
CheckFailed(IntrinsicParam(ArgNo, NumRets) + " does not "
"match parameter %" + utostr(Match - 1) + ".", F);
"match parameter %" + utostr(Match - NumRets) + ".", F);
return false;
}
}