[Mlir-commits] [clang] [llvm] [mlir] [IR][CodeGen] Replace constrained FP intrinsics with fp.control/fp.except operand bundles (PR #191613)

Jason Eckhardt llvmlistbot at llvm.org
Sun Apr 12 11:57:29 PDT 2026


================
@@ -1362,6 +1363,11 @@ static ConstantFP *flushDenormalConstantFP(ConstantFP *CFP,
   if (!APF.isDenormal())
     return CFP;
 
+  if (auto *CB = dyn_cast_or_null<CallBase>(Inst)) {
+    auto Mode = IsOutput ? CB->getOutputDenormMode() : CB->getInputDenormMode();
----------------
nvjle wrote:

No auto here.

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


More information about the Mlir-commits mailing list