[llvm] [SDAG] Add missing float type legalizations for FMODF (PR #128055)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 11:16:00 PST 2025
================
@@ -2616,6 +2624,18 @@ bool SelectionDAG::expandMultipleResultFPLibCall(
auto [Call, CallChain] = TLI->LowerCallTo(CLI);
+ if (CallRetResNo && !Node->hasAnyUseOfValue(*CallRetResNo)) {
+ // This is needed for x87, which uses a floating-point stack. If (for
----------------
MacDue wrote:
Would you be okay with landing the fix in this PR in the interim? Currently, the `FMODF` lowering is broken in this case, and I'm concerned that fixing the x86 call lowering properly could be a little rabbit hole, especially given it's not a target I normally work on.
https://github.com/llvm/llvm-project/pull/128055
More information about the llvm-commits
mailing list