[Mlir-commits] [flang] [mlir] [mlir][OpenMP] Add iterator support to map/motion clause (PR #197047)

Sergio Afonso llvmlistbot at llvm.org
Wed May 13 08:49:44 PDT 2026


================
@@ -388,6 +388,10 @@ static LogicalResult checkImplementationStatus(Operation &op) {
     if (op.hasThreadLimitMultiDim())
       result = todo("thread_limit with multi-dimensional values");
   };
+  auto checkMapIteratorModifier = [&todo](auto op, LogicalResult &result) {
----------------
skatrak wrote:

Nit: The convention is one helper for each clause, and we can just check what support is missing from that clause. In this case, just the iterator modifier.
```suggestion
  auto checkMap = [&todo](auto op, LogicalResult &result) {
```

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


More information about the Mlir-commits mailing list