[llvm] [SDAG] Add missing float type legalizations for FMODF (PR #128055)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 23:33:33 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:

I think it's probably not as simple as always emitting a pop. For example, if the return value is returned from the calling function, you would not want to emit a pop.

https://github.com/llvm/llvm-project/pull/128055


More information about the llvm-commits mailing list