[clang] [llvm] [openmp] [OpenMP] Taskgraph Clang 'record and replay' frontend support (PR #159774)
Jannick Kremer via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 23 06:14:53 PDT 2025
================
@@ -2218,7 +2218,11 @@ enum CXCursorKind {
*/
CXCursor_OpenACCCacheConstruct = 333,
- CXCursor_LastStmt = CXCursor_OpenACCCacheConstruct,
+ /** OpenMP taskgraph directive.
+ */
+ CXCursor_OMPTaskgraphDirective = 334,
----------------
DeinAlptraum wrote:
Side note: is there a reason you went with number 334 here, putting it next to the OpenACC stuff, instead of adding this in the free range 311 - 319 after the other OMP directives?
https://github.com/llvm/llvm-project/pull/159774
More information about the llvm-commits
mailing list