[llvm] [mlir] [Flang][OpenMP][Taskloop] Translation support for taskloop construct (PR #166903)

Jack Styles via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 11 03:14:35 PST 2025


================
@@ -340,10 +352,22 @@ static LogicalResult checkImplementationStatus(Operation &op) {
     if (!op.getLinearVars().empty() || !op.getLinearStepVars().empty())
       result = todo("linear");
   };
+  auto checkMergeable = [&todo](auto op, LogicalResult &result) {
+    if (op.getMergeable())
+      result = todo("mergeable");
----------------
Stylie777 wrote:

We need to add the TODO tests for all these clauses, as currently only Untied is covered by tests 

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


More information about the llvm-commits mailing list