[PATCH] D137851: [OPENMP]Initial support for at clause

Alexey Bataev via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 15 03:48:42 PST 2022


ABataev added inline comments.


================
Comment at: clang/lib/Parse/ParseOpenMP.cpp:2168
+    Actions.ActOnOpenMPErrorDirective(Clauses, StartLoc, SourceLocation(),
+                                      /*InExcontext = */ false);
+    break;
----------------
InExContext


================
Comment at: clang/lib/Sema/SemaOpenMP.cpp:11036
+      OMPExecutableDirective::getClausesOfKind<OMPAtClause>(Clauses);
+  const OMPAtClause *AtC = AtClauses.empty() ? nullptr : (*AtClauses.begin());
+
----------------
`AtClauses.front()`


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137851/new/

https://reviews.llvm.org/D137851



More information about the cfe-commits mailing list