[flang-commits] [flang] Adding parsing and semantic check support for omp masked (PR #91432)

Anchu Rajendran S via flang-commits flang-commits at lists.llvm.org
Tue May 14 22:36:53 PDT 2024


================
@@ -205,9 +205,15 @@ static const OmpDirectiveSet compositeConstructSet{
 };
 
 static const OmpDirectiveSet blockConstructSet{
+    Directive::OMPD_masked,
+    Directive::OMPD_masked_taskloop,
+    Directive::OMPD_masked_taskloop_simd,
     Directive::OMPD_master,
     Directive::OMPD_ordered,
     Directive::OMPD_parallel,
+    Directive::OMPD_parallel_masked,
+    Directive::OMPD_parallel_masked_taskloop,
+    Directive::OMPD_parallel_masked_taskloop_simd,
----------------
anchuraj wrote:

Thank you! Moved the constructs and made the necessary changes

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


More information about the flang-commits mailing list