@@ -1322,8 +1322,8 @@ void RISCVFrameLowering::emitEpilogue(MachineFunction &MF,
1322
1322
// Update CFA Offset. If this is a QCI interrupt function, there will be a
1323
1323
// leftover offset which is deallocated by `QC.C.MILEAVERET`, otherwise
1324
1324
// 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 ()));
1327
1327
BuildMI (MBB, MBBI, DL, TII->get (TargetOpcode::CFI_INSTRUCTION))
1328
1328
.addCFIIndex (CFIIndex)
1329
1329
.setMIFlag (MachineInstr::FrameDestroy);
@@ -1334,7 +1334,8 @@ void RISCVFrameLowering::emitEpilogue(MachineFunction &MF,
1334
1334
// function, there will be a leftover offset which is deallocated by
1335
1335
// `QC.C.MILEAVERET`, otherwise getQCIInterruptStackSize() will be 0.
1336
1336
if (StackSize != 0 )
1337
- deallocateStack (MF, MBB, MBBI, DL, StackSize, RVFI->getQCIInterruptStackSize ());
1337
+ deallocateStack (MF, MBB, MBBI, DL, StackSize,
1338
+ RVFI->getQCIInterruptStackSize ());
1338
1339
1339
1340
// Emit epilogue for shadow call stack.
1340
1341
emitSCSEpilogue (MF, MBB, MBBI, DL);
0 commit comments