Skip to content

Commit f7dc8a9

Browse files
Fix format.
1 parent 78781de commit f7dc8a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/PowerPC/PPCFrameLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,8 +1102,8 @@ void PPCFrameLowering::emitPrologue(MachineFunction &MF,
11021102
}
11031103

11041104
// Save the LR now.
1105-
if (!HasSTUX && MustSaveLR && !HasFastMFLR && isInt<16>(FrameSize + LROffset)
1106-
&& !HasROPProtect)
1105+
if (!HasSTUX && MustSaveLR && !HasFastMFLR &&
1106+
isInt<16>(FrameSize + LROffset) && !HasROPProtect)
11071107
SaveLR(LROffset + FrameSize);
11081108

11091109
// Add Call Frame Information for the instructions we generated above.

0 commit comments

Comments
 (0)