summaryrefslogtreecommitdiffstats
path: root/clang/include/clang-c
diff options
context:
space:
mode:
authorcchen <cchen@cray.com>2019-12-04 14:36:07 -0500
committerAlexey Bataev <a.bataev@hotmail.com>2019-12-04 14:53:17 -0500
commit713dab21e27c987b9114547ce7136bac2e775de9 (patch)
tree696ff853d8c9db4fab6b73fbfcab6de0c4185d0d /clang/include/clang-c
parent9e978bb01ceae8eaa415d8951cc96803e68b73fb (diff)
downloadbcm5719-llvm-713dab21e27c987b9114547ce7136bac2e775de9.tar.gz
bcm5719-llvm-713dab21e27c987b9114547ce7136bac2e775de9.zip
[OpenMP50] Add parallel master construct, by Chi Chun Chen.
Reviewers: ABataev, jdoerfert Reviewed By: ABataev Subscribers: 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.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 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.
OpenPOWER on IntegriCloud