================
@@ -670,6 +670,20 @@ bool X86TargetLowering::CanLowerReturn(
CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context,
const Type *RetTy) const {
+ // Mingw64 GCC returns f128 via sret, which matches the documentation of the
+ // Windows x64 calling convention:
+ //
+ //
https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention?view=msvc-170#return-values
+ //
+ // > Otherwise, the caller must allocate memory for the return value and pass
+ // a pointer to it as the first argument.
+ //
+ // Return false, which will perform sret demotion.
+ if (Subtarget.isCallingConvWin64(CallConv) &&
----------------
folkertdev wrote:
should we exclude things like the swift calling convention here?
https://github.com/llvm/llvm-project/pull/204887
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits