diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-26 12:05:45 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-06-26 12:05:45 +0000 |
commit | d1e40fbfe1c38f5778c739d1fc1b3bcf156ccb58 (patch) | |
tree | 30b273a3b64072c964ed33986d2de6362af8c7d8 /clang/include/clang-c | |
parent | aee45418287cdcc1387c56e0c0d08990c322b45b (diff) | |
download | bcm5719-llvm-d1e40fbfe1c38f5778c739d1fc1b3bcf156ccb58.tar.gz bcm5719-llvm-d1e40fbfe1c38f5778c739d1fc1b3bcf156ccb58.zip |
[OPENMP] Initial parsing and sema analysis for 'single' directive.
llvm-svn: 211774
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 909e2dbfe27..561bed92315 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2151,7 +2151,11 @@ enum CXCursorKind { */ CXCursor_OMPSectionDirective = 236, - CXCursor_LastStmt = CXCursor_OMPSectionDirective, + /** \brief OpenMP single directive. + */ + CXCursor_OMPSingleDirective = 237, + + CXCursor_LastStmt = CXCursor_OMPSingleDirective, /** * \brief Cursor that represents the translation unit itself. |