[Mlir-commits] [clang] [flang] [mlir] [flang][flang-driver][mlir][OpenMP] atomic control support (PR #143441)
Sergio Afonso
llvmlistbot at llvm.org
Tue Jul 1 04:27:31 PDT 2025
================
@@ -88,6 +88,36 @@ void fir::setTuneCPU(mlir::ModuleOp mod, llvm::StringRef cpu) {
mod->setAttr(tuneCpuName, mlir::StringAttr::get(ctx, cpu));
}
+static constexpr const char *ignoreDenormalModeName =
+ "fir.ignore.denormal.mode";
----------------
skatrak wrote:
Nit: Generally, dots are used to separate "scopes" in some hierarchy. I'd suggest following the `<dialect> <dot> <option name>` convention here.
```suggestion
"fir.atomic_ignore_denormal_mode";
```
https://github.com/llvm/llvm-project/pull/143441
More information about the Mlir-commits
mailing list