[llvm] [SDAG] Fix llvm.modf for ppc_fp128 (attempt two) (PR #127976)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 04:07:05 PST 2025
================
@@ -2644,8 +2644,10 @@ bool SelectionDAG::expandMultipleResultFPLibCall(
// optimized out. This prevents an FP stack pop from being emitted for it.
// Setting the root like this ensures there will be a use of the
// `CopyFromReg` chain, and ensures the FP pop will be emitted.
+ SDValue OldRoot = getRoot();
SDValue NewRoot =
- getNode(ISD::TokenFactor, DL, MVT::Other, getRoot(), CallChain);
+ OldRoot ? getNode(ISD::TokenFactor, DL, MVT::Other, OldRoot, CallChain)
----------------
MacDue wrote:
I think this will have to be updated to preserve the root created during legalize types, as otherwise the workaround needed for functions like `modf` and `frexp` when only the result from the output pointer is used won't work (in all cases), and I can't think of any obvious alternate solution here.
https://github.com/llvm/llvm-project/pull/127976
More information about the llvm-commits
mailing list