[llvm] [SDAG] Allow folding stack slots into sincos/frexp in more cases (PR #118117)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 3 07:25:33 PST 2024
================
@@ -2515,13 +2550,25 @@ bool SelectionDAG::expandMultipleResultFPLibCall(
SDValue StoreValue = ST->getValue();
unsigned ResNo = StoreValue.getResNo();
Type *StoreType = StoreValue.getValueType().getTypeForEVT(Ctx);
- if (CallRetResNo == ResNo || !ST->isSimple() ||
+ if (
+ // Ensure the store corresponds to an output pointer.
----------------
arsenm wrote:
Weird formatting, get condition on the same line as the if?
https://github.com/llvm/llvm-project/pull/118117
More information about the llvm-commits
mailing list