[llvm-branch-commits] [clang] [clang][OpenMP] Split OMPOrderedDirective into two classes (PR #214730)

Jannick Kremer via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Aug 7 07:55:12 PDT 2026


================
@@ -1456,6 +1456,9 @@ def is_unexposed(self):
     # OpenMP split directive.
     OMP_SPLIT_DIRECTIVE = 312
 
+    # OpenMP ordered-blockassoc directive.
+    OMP_ORDERED_BLOCKASSOC_DIRECTIVE = 313
----------------
DeinAlptraum wrote:

```suggestion
    OMP_ORDERED_BLOCK_ASSOC_DIRECTIVE = 313
```
`CXCursor_OMPOrderedBlockAssocDirective` on C-side so `BLOCK` and `ASSOC` should be split

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


More information about the llvm-branch-commits mailing list