[llvm] [SelectionDAG] Remove UnsafeFPMath check in `visitFADDForFMACombine` (PR #127770)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 02:36:17 PST 2025
================
@@ -16320,8 +16320,8 @@ SDValue DAGCombiner::visitFADDForFMACombine(SDNode *N) {
if (!HasFMAD && !HasFMA)
return SDValue();
- bool AllowFusionGlobally = (Options.AllowFPOpFusion == FPOpFusion::Fast ||
- Options.UnsafeFPMath || HasFMAD);
+ bool AllowFusionGlobally =
+ Options.AllowFPOpFusion == FPOpFusion::Fast || HasFMAD;
----------------
paperchalice wrote:
Currently only drop `unsafe-fp-math` in global fusion and handle regressions, I will handle `visitFSUBForFMACombine` later. Eliminate other `UnsafeFPMath`s would be a long term goal.
https://github.com/llvm/llvm-project/pull/127770
More information about the llvm-commits
mailing list