[llvm] [AArch64] Initial compiler support for SVE unwind on Windows. (PR #138609)
Martin Storsjö via llvm-commits
llvm-commits at lists.llvm.org
Wed May 7 03:51:18 PDT 2025
================
@@ -1982,6 +2039,8 @@ void AArch64FrameLowering::emitPrologue(MachineFunction &MF,
: 0;
if (windowsRequiresStackProbe(MF, NumBytes + RealignmentPadding)) {
+ if (AFI->getSVECalleeSavedStackSize())
+ report_fatal_error("SVE callee saves not yet supported");
----------------
mstorsjo wrote:
Can we make the error message a little more descriptive here? SVE callee saves are supported, but not in conjunction with stack probes, right?
https://github.com/llvm/llvm-project/pull/138609
More information about the llvm-commits
mailing list