[clang] [OpenMP] Introduce support for OMPX extensions and taskgraph frontend (PR #66919)

Alexey Bataev via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 20 09:58:12 PDT 2023


================
@@ -2729,6 +2729,55 @@ class OMPTaskwaitDirective : public OMPExecutableDirective {
   }
 };
 
+/// This represents '#pragma ompx taskgraph' directive.
+/// Available with OMPX extensions.
+///
+/// \code
+/// #pragma ompx taskgraph
+/// \endcode
+///
+class OMPTaskgraphDirective : public OMPExecutableDirective {
----------------
alexey-bataev wrote:

```
class OMPTaskgraphDirective final : public OMPExecutableDirective {
```

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


More information about the cfe-commits mailing list