[llvm] [AArch64][GISel] Translate legal SVE formal arguments and select COPY for SVE (PR #95236)
Thorsten Schütt via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 13 00:34:35 PDT 2024
================
@@ -525,10 +527,10 @@ static void handleMustTailForwardedRegisters(MachineIRBuilder &MIRBuilder,
bool AArch64CallLowering::fallBackToDAGISel(const MachineFunction &MF) const {
auto &F = MF.getFunction();
- if (F.getReturnType()->isScalableTy() ||
+ if (!EnableSVEGISel && (F.getReturnType()->isScalableTy() ||
----------------
tschuett wrote:
Are scalable return types enabled now?
https://github.com/llvm/llvm-project/pull/95236
More information about the llvm-commits
mailing list