Skip to content

Commit 785d26e

Browse files
committed
Fix formatting
1 parent 7c5bc2c commit 785d26e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1995,8 +1995,8 @@ bool AArch64InstructionSelector::selectVectorAshrLshr(
19951995
bool AArch64InstructionSelector::selectVaStartAAPCS(
19961996
MachineInstr &I, MachineFunction &MF, MachineRegisterInfo &MRI) const {
19971997

1998-
if (STI.isCallingConvWin64(
1999-
MF.getFunction().getCallingConv(), MF.getFunction().isVarArg()))
1998+
if (STI.isCallingConvWin64(MF.getFunction().getCallingConv(),
1999+
MF.getFunction().isVarArg()))
20002000
return false;
20012001

20022002
// The layout of the va_list struct is specified in the AArch64 Procedure Call
@@ -2044,8 +2044,7 @@ bool AArch64InstructionSelector::selectVaStartAAPCS(
20442044
.addImm(OffsetBytes / PtrSize)
20452045
.addMemOperand(MF.getMachineMemOperand(
20462046
MMO->getPointerInfo().getWithOffset(OffsetBytes),
2047-
MachineMemOperand::MOStore, PtrSize,
2048-
MMO->getBaseAlign()));
2047+
MachineMemOperand::MOStore, PtrSize, MMO->getBaseAlign()));
20492048
constrainSelectedInstRegOperands(*MIB, TII, TRI, RBI);
20502049

20512050
OffsetBytes += PtrSize;
@@ -2080,8 +2079,7 @@ bool AArch64InstructionSelector::selectVaStartAAPCS(
20802079
.addImm(OffsetBytes / IntSize)
20812080
.addMemOperand(MF.getMachineMemOperand(
20822081
MMO->getPointerInfo().getWithOffset(OffsetBytes),
2083-
MachineMemOperand::MOStore, IntSize,
2084-
MMO->getBaseAlign()));
2082+
MachineMemOperand::MOStore, IntSize, MMO->getBaseAlign()));
20852083
constrainSelectedInstRegOperands(*MIB, TII, TRI, RBI);
20862084
OffsetBytes += IntSize;
20872085
};

0 commit comments

Comments
 (0)