[llvm] [SelectionDAG] Preserve fast math flags when legalizing/promoting (PR #130124)

Antonio Frighetto via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 22:51:03 PST 2025


================
@@ -5075,6 +5075,9 @@ void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
   if (Node->getOpcode() == ISD::BR_CC ||
       Node->getOpcode() == ISD::SELECT_CC)
     OVT = Node->getOperand(2).getSimpleValueType();
+  // Preserve fast math flags
+  SDNodeFlags FastMathFlags = Node->getFlags() & SDNodeFlags::FastMathFlags;
+  SelectionDAG::FlagInserter FlagsInserter(DAG, FastMathFlags);
----------------
antoniofrighetto wrote:

No need to do this for the standard fp ops below as the flags get already propagated, right?

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


More information about the llvm-commits mailing list