[llvm-branch-commits] [OpenMP] Add OpenMP 6.0 taskgraph parsing/trivial semantics (PR #194050)
Amit Tiwari via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat May 2 04:35:38 PDT 2026
================
@@ -949,6 +949,9 @@ void clang::getOpenMPCaptureRegions(
case OMPD_taskloop:
CaptureRegions.push_back(OMPD_taskloop);
break;
+ case OMPD_taskgraph:
+ CaptureRegions.push_back(OMPD_taskgraph);
+ break;
----------------
amitamd7 wrote:
Isn't `taskgraph` a capturing directive? If so, should be added to `isOpenMPCapturingDirective()`.
https://github.com/llvm/llvm-project/pull/194050
More information about the llvm-branch-commits
mailing list