@@ -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