summaryrefslogtreecommitdiffstats
path: root/clang/include/clang-c
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2014-10-09 04:18:56 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2014-10-09 04:18:56 +0000
commit13314bf5269a41a583c0019fe74bb1cdb86e7d44 (patch)
treebad6efc4d1819c103d94705825d41d878e5430ae /clang/include/clang-c
parent7be03d09cd2e2bc76c86bb0730770796629fb76c (diff)
downloadbcm5719-llvm-13314bf5269a41a583c0019fe74bb1cdb86e7d44.tar.gz
bcm5719-llvm-13314bf5269a41a583c0019fe74bb1cdb86e7d44.zip
[OPENMP] 'omp teams' directive basic support.
Includes parsing and semantic analysis for 'omp teams' directive support from OpenMP 4.0. Adds additional analysis to 'omp target' directive with 'omp teams' directive. llvm-svn: 219385
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r--clang/include/clang-c/Index.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index 11751964360..911f7cc9663 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/include/clang-c/Index.h
@@ -2221,7 +2221,11 @@ enum CXCursorKind {
*/
CXCursor_OMPTargetDirective = 252,
- CXCursor_LastStmt = CXCursor_OMPTargetDirective,
+ /** \brief OpenMP teams directive.
+ */
+ CXCursor_OMPTeamsDirective = 253,
+
+ CXCursor_LastStmt = CXCursor_OMPTeamsDirective,
/**
* \brief Cursor that represents the translation unit itself.
OpenPOWER on IntegriCloud