Skip to content

Commit edc8b5f

Browse files
committed
Add braces
1 parent 698e146 commit edc8b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/AArch64/AArch64FrameLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2540,8 +2540,8 @@ void AArch64FrameLowering::emitEpilogue(MachineFunction &MF,
25402540
// FP to restore SVE callee saves (as there is an unknown amount of
25412541
// data/padding between the SP and SVE CS area).
25422542
Register BaseForSVEDealloc =
2543-
AFI->isStackRealigned() || MFI.hasVarSizedObjects() ? AArch64::FP
2544-
: AArch64::SP;
2543+
(AFI->isStackRealigned() || MFI.hasVarSizedObjects()) ? AArch64::FP
2544+
: AArch64::SP;
25452545
if (SVECalleeSavedSize && BaseForSVEDealloc == AArch64::FP) {
25462546
Register CalleeSaveBase = AArch64::FP;
25472547
if (int64_t CalleeSaveBaseOffset =

0 commit comments

Comments
 (0)