diff options
author | Kelvin Li <kkwli0@gmail.com> | 2016-08-05 14:37:37 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2016-08-05 14:37:37 +0000 |
commit | 02532876334c3323c26b236761bca6b4cead3c27 (patch) | |
tree | 5324cdc4a4a6726796691a75ebd274772c66b66f /clang/include/clang-c | |
parent | 24dc1e7a90ee85b33ac103f976bf6ad14097f9bf (diff) | |
download | bcm5719-llvm-02532876334c3323c26b236761bca6b4cead3c27.tar.gz bcm5719-llvm-02532876334c3323c26b236761bca6b4cead3c27.zip |
[OpenMP] Sema and parsing for 'teams distribute' pragma
This patch is to implement sema and parsing for 'teams distribute' pragma.
Differential Revision: https://reviews.llvm.org/D23189
llvm-svn: 277818
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 dbc5c33ddff..170e4e7fad5 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2329,7 +2329,11 @@ enum CXCursorKind { */ CXCursor_OMPTargetSimdDirective = 270, - CXCursor_LastStmt = CXCursor_OMPTargetSimdDirective, + /** \brief OpenMP teams distribute directive. + */ + CXCursor_OMPTeamsDistributeDirective = 271, + + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeDirective, /** * \brief Cursor that represents the translation unit itself. |