mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
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:
parent
eb85728970
commit
dc297c1f66
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user