diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-11 11:25:16 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-11 11:25:16 +0000 |
commit | 9c2e8ee72fe8c99a016a204a2f2b167cd17e188a (patch) | |
tree | 813773957814bc63d730a1a0476cb5fa60cf8d2f /clang/include/clang-c | |
parent | 83442bb8b2e5284276d3eb5a97457401ed61d3f7 (diff) | |
download | bcm5719-llvm-9c2e8ee72fe8c99a016a204a2f2b167cd17e188a.tar.gz bcm5719-llvm-9c2e8ee72fe8c99a016a204a2f2b167cd17e188a.zip |
[OPENMP] Parsing and sema analysis for 'omp task' directive.
llvm-svn: 212804
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 f6709f1af78..7f3f2482667 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2163,9 +2163,13 @@ enum CXCursorKind { */ CXCursor_OMPParallelSectionsDirective = 239, + /** \brief OpenMP task directive. + */ + CXCursor_OMPTaskDirective = 240, + /** \brief Windows Structured Exception Handling's leave statement. */ - CXCursor_SEHLeaveStmt = 240, + CXCursor_SEHLeaveStmt = 241, CXCursor_LastStmt = CXCursor_SEHLeaveStmt, |