[llvm] [MachineFrameInfo] Refactoring with computeMaxcallFrameSize() (NFC) (PR #78001)
Jonas Paulsson via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 5 10:36:38 PST 2024
================
@@ -69,6 +72,15 @@ bool FinalizeISel::runOnMachineFunction(MachineFunction &MF) {
}
}
+ for (auto &MBB : MF)
----------------
JonPsson1 wrote:
OK - patch updated. I now actually found out there were cases of emitting calls even after finalize isel (PPCTLSDynamicCall.cpp), which made it obvious that this should be verified as late as possible. Seems there is no real need to employ the verifier - a single assert in PEI does the job, I think.
https://github.com/llvm/llvm-project/pull/78001
More information about the llvm-commits
mailing list