[llvm] [ARM] R11 not pushed adjacent to link register with PAC-M and AAPCS frame chain fix (PR #82801)
Eli Friedman via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 29 14:32:48 PST 2024
================
@@ -222,7 +222,8 @@ void Thumb1FrameLowering::emitPrologue(MachineFunction &MF,
case ARM::R8:
case ARM::R9:
case ARM::R10:
- if (STI.splitFramePushPop(MF)) {
+ if (STI.getPushPopSplitVariation(MF) ==
+ ARMSubtarget::PushPopSplitVariation::R7Split) {
----------------
efriedma-quic wrote:
Given this is Thumb1FrameLowering... isn't this always true?
https://github.com/llvm/llvm-project/pull/82801
More information about the llvm-commits
mailing list