[clang] [llvm] [openmp] [OpenMP] Taskgraph Clang 'record and replay' frontend support (PR #159774)

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 20 07:19:12 PDT 2025


================
@@ -6496,6 +6508,12 @@ StmtResult SemaOpenMP::ActOnOpenMPExecutableDirective(
            "No associated statement allowed for 'omp taskwait' directive");
     Res = ActOnOpenMPTaskwaitDirective(ClausesWithImplicit, StartLoc, EndLoc);
     break;
+  case OMPD_taskgraph:
+    assert(AStmt != nullptr &&
----------------
alexey-bataev wrote:

```suggestion
    assert(AStmt &&
```

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


More information about the llvm-commits mailing list