diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-08 08:12:03 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-08 08:12:03 +0000 |
commit | 84d0b3efee509e4c820096772981adeb6568978f (patch) | |
tree | 7f24a3a2722c4f05eef7c831cca58f09281d18cc /clang/include/clang-c | |
parent | efbce587759f70ad651c98b93e9590751b0e3ce9 (diff) | |
download | bcm5719-llvm-84d0b3efee509e4c820096772981adeb6568978f.tar.gz bcm5719-llvm-84d0b3efee509e4c820096772981adeb6568978f.zip |
[OPENMP] Parsing and sema analysis for 'omp parallel sections' directive.
llvm-svn: 212516
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 1b9e993f338..f6709f1af78 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2159,9 +2159,13 @@ enum CXCursorKind { */ CXCursor_OMPParallelForDirective = 238, + /** \brief OpenMP parallel sections directive. + */ + CXCursor_OMPParallelSectionsDirective = 239, + /** \brief Windows Structured Exception Handling's leave statement. */ - CXCursor_SEHLeaveStmt = 239, + CXCursor_SEHLeaveStmt = 240, CXCursor_LastStmt = CXCursor_SEHLeaveStmt, |