forked from OSchip/llvm-project
AArch64CallLowering::lowerCall(): fix build by not passing InArgs into lowerTailCall()
llvm-svn: 372172
This commit is contained in:
parent
97bc5ae993
commit
ad0c2e00a8
|
@ -786,7 +786,7 @@ bool AArch64CallLowering::lowerCall(MachineIRBuilder &MIRBuilder,
|
|||
// If we can lower as a tail call, do that instead.
|
||||
if (Info.IsTailCall &&
|
||||
isEligibleForTailCallOptimization(MIRBuilder, Info, InArgs, OutArgs))
|
||||
return lowerTailCall(MIRBuilder, Info, OutArgs, InArgs);
|
||||
return lowerTailCall(MIRBuilder, Info, OutArgs);
|
||||
|
||||
// Find out which ABI gets to decide where things go.
|
||||
CCAssignFn *AssignFnFixed =
|
||||
|
|
Loading…
Reference in New Issue