Skip to content

Commit a6bba68

Browse files
committed
fix formatting
1 parent ca1aa79 commit a6bba68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8232,7 +8232,8 @@ SDValue AArch64TargetLowering::LowerFormalArguments(
82328232
// varargs
82338233
// Note that IsWin64 part is required to prevent odd miscompilations on arm64 windows
82348234
// platforms. For more info refer to GH#126780 PR comments.
8235-
if (isVarArg && (DAG.getMachineFunction().getFrameInfo().hasVAStart() || IsWin64)) {
8235+
if (isVarArg &&
8236+
(DAG.getMachineFunction().getFrameInfo().hasVAStart() || IsWin64)) {
82368237
if (!Subtarget->isTargetDarwin() || IsWin64) {
82378238
// The AAPCS variadic function ABI is identical to the non-variadic
82388239
// one. As a result there may be more arguments in registers and we should

0 commit comments

Comments
 (0)