[llvm] Xtensa] Implement windowed call ABI. (PR #130001)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 02:31:15 PDT 2025
================
@@ -1385,6 +1389,16 @@ MachineBasicBlock *XtensaTargetLowering::EmitInstrWithCustomInserter(
}
return MBB;
}
+ case Xtensa::MOVSP_P: {
+ MachineOperand SP = MI.getOperand(0);
+ MachineOperand NewSP = MI.getOperand(1);
----------------
arsenm wrote:
```suggestion
MachineOperand SP = &MI.getOperand(0);
MachineOperand NewSP = &MI.getOperand(1);
```
https://github.com/llvm/llvm-project/pull/130001
More information about the llvm-commits
mailing list