We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1aa79 commit a6bba68Copy full SHA for a6bba68
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -8232,7 +8232,8 @@ SDValue AArch64TargetLowering::LowerFormalArguments(
8232
// varargs
8233
// Note that IsWin64 part is required to prevent odd miscompilations on arm64 windows
8234
// platforms. For more info refer to GH#126780 PR comments.
8235
- if (isVarArg && (DAG.getMachineFunction().getFrameInfo().hasVAStart() || IsWin64)) {
+ if (isVarArg &&
8236
+ (DAG.getMachineFunction().getFrameInfo().hasVAStart() || IsWin64)) {
8237
if (!Subtarget->isTargetDarwin() || IsWin64) {
8238
// The AAPCS variadic function ABI is identical to the non-variadic
8239
// one. As a result there may be more arguments in registers and we should
0 commit comments