Skip to content

Commit 0bc0c6a

Browse files
committed
clang-format
1 parent e1004dd commit 0bc0c6a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

llvm/lib/Target/RISCV/RISCVFrameLowering.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1322,8 +1322,8 @@ void RISCVFrameLowering::emitEpilogue(MachineFunction &MF,
13221322
// Update CFA Offset. If this is a QCI interrupt function, there will be a
13231323
// leftover offset which is deallocated by `QC.C.MILEAVERET`, otherwise
13241324
// getQCIInterruptStackSize() will be 0.
1325-
unsigned CFIIndex =
1326-
MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(nullptr, RVFI->getQCIInterruptStackSize()));
1325+
unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(
1326+
nullptr, RVFI->getQCIInterruptStackSize()));
13271327
BuildMI(MBB, MBBI, DL, TII->get(TargetOpcode::CFI_INSTRUCTION))
13281328
.addCFIIndex(CFIIndex)
13291329
.setMIFlag(MachineInstr::FrameDestroy);
@@ -1334,7 +1334,8 @@ void RISCVFrameLowering::emitEpilogue(MachineFunction &MF,
13341334
// function, there will be a leftover offset which is deallocated by
13351335
// `QC.C.MILEAVERET`, otherwise getQCIInterruptStackSize() will be 0.
13361336
if (StackSize != 0)
1337-
deallocateStack(MF, MBB, MBBI, DL, StackSize, RVFI->getQCIInterruptStackSize());
1337+
deallocateStack(MF, MBB, MBBI, DL, StackSize,
1338+
RVFI->getQCIInterruptStackSize());
13381339

13391340
// Emit epilogue for shadow call stack.
13401341
emitSCSEpilogue(MF, MBB, MBBI, DL);

0 commit comments

Comments
 (0)