[flang-commits] [flang] [Flang][OpenMP] Enables parsing of threadset clause (PR #169856)

Anchu Rajendran S via flang-commits flang-commits at lists.llvm.org
Fri Nov 28 09:59:22 PST 2025


================
@@ -1199,6 +1168,10 @@ TYPE_PARSER(construct<OmpTaskReductionClause>(
 
 TYPE_PARSER(construct<OmpTransparentClause>(scalarIntExpr))
 
+TYPE_PARSER(construct<OmpThreadsetClause>(
+    "omp_pool" >> pure(OmpThreadsetClause::ThreadsetPolicy::Omp_Pool) ||
+    "omp_team" >> pure(OmpThreadsetClause::ThreadsetPolicy::Omp_Team)))
----------------
anchuraj wrote:

Updated. Thank you for reviewing!

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


More information about the flang-commits mailing list