[Mlir-commits] [llvm] [mlir] [Flang] [OpenMP] Add LLVM lowering support for PRIORITY in TASK (PR #120710)

Thirumalai Shaktivel llvmlistbot at llvm.org
Fri Dec 20 02:11:51 PST 2024


================
@@ -273,6 +272,11 @@ static LogicalResult checkImplementationStatus(Operation &op) {
         checkLinear(op, result);
         checkOrder(op, result);
       })
+      .Case([&](omp::TaskloopOp op) {
+        // TODO: Add other clauses check
+        checkPriority(op, result);
+        checkUntied(op, result);
+      })
----------------
Thirumalai-Shaktivel wrote:

These changes are taken from here: https://github.com/llvm/llvm-project/pull/115283/files#diff-2cbb5651f4570d81d55ac4198deda0f6f7341b2503479752ef2295da3774c586R266-R269.

I will merge that PR soon.

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


More information about the Mlir-commits mailing list