diff options
author | cchen <cchen@cray.com> | 2019-12-05 13:43:48 -0500 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-12-05 14:35:27 -0500 |
commit | 47d6094d7fd463707598a0e65dd44a0d1cc279eb (patch) | |
tree | 7f876af289cb4bbaed6de64f7a7c3e9ec3294368 /clang/include/clang-c | |
parent | 23e63a906d0387d5ac7e4d3a57401f016b14c677 (diff) | |
download | bcm5719-llvm-47d6094d7fd463707598a0e65dd44a0d1cc279eb.tar.gz bcm5719-llvm-47d6094d7fd463707598a0e65dd44a0d1cc279eb.zip |
[OpenMP50] Add parallel master construct
Reviewers: ABataev, jdoerfert
Reviewed By: ABataev
Subscribers: rnk, jholewinski, guansong, arphaman, jfb, cfe-commits, sandoval, dreachem
Tags: #clang
Differential Revision: https://reviews.llvm.org/D70726
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 5ff887ea5bc..b653995ebbd 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2570,7 +2570,11 @@ enum CXCursorKind { */ CXCursor_OMPParallelMasterTaskLoopSimdDirective = 284, - CXCursor_LastStmt = CXCursor_OMPParallelMasterTaskLoopSimdDirective, + /** OpenMP parallel master directive. + */ + CXCursor_OMPParallelMasterDirective = 285, + + CXCursor_LastStmt = CXCursor_OMPParallelMasterDirective, /** * Cursor that represents the translation unit itself. |