[llvm] [Xtensa] Implement vararg support. (PR #117126)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 27 15:14:16 PST 2024
================
@@ -304,13 +318,14 @@ SDValue XtensaTargetLowering::LowerFormalArguments(
SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
MachineFunction &MF = DAG.getMachineFunction();
MachineFrameInfo &MFI = MF.getFrameInfo();
+ XtensaMachineFunctionInfo *XtensaFI = MF.getInfo<XtensaMachineFunctionInfo>();
+ EVT PtrVT = getPointerTy(MF.getDataLayout());
----------------
arsenm wrote:
In context this probably should be getFrameIndexTy
https://github.com/llvm/llvm-project/pull/117126
More information about the llvm-commits
mailing list