[flang-commits] [flang] [llvm] [Flang][OpenMP]Add parsing support for DISPATCH construct (PR #121982)

Krzysztof Parzyszek via flang-commits flang-commits at lists.llvm.org
Tue Jan 7 11:56:17 PST 2025


================
@@ -0,0 +1,9 @@
+! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -fopenmp-version=51 -o - %s 2>&1 | FileCheck %s
+
+! CHECK: not yet implemented: OpenMPDispatchConstruct
+program p
+  integer r
+  r = 1
+!$omp dispatch nowait
+  print *,r
----------------
kparzysz wrote:

That's actually an invalid testcase.  The block must be a function or a procedure call.

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


More information about the flang-commits mailing list