diff options
author | Kelvin Li <kkwli0@gmail.com> | 2016-12-09 03:24:30 +0000 |
---|---|---|
committer | Kelvin Li <kkwli0@gmail.com> | 2016-12-09 03:24:30 +0000 |
commit | 7ade93f5e29c470f624ec5b71a92aadd6256a357 (patch) | |
tree | 0e6601099618973fb99d09c7754ec9ecb38a08b7 /clang/include/clang-c | |
parent | 217c5d36bb2bbcda1859f1ab5b4b5145487e9454 (diff) | |
download | bcm5719-llvm-7ade93f5e29c470f624ec5b71a92aadd6256a357.tar.gz bcm5719-llvm-7ade93f5e29c470f624ec5b71a92aadd6256a357.zip |
[OpenMP] Sema and parsing for 'teams distribute parallel for' pragma
This patch is to implement sema and parsing for 'teams distribute parallel for' pragma.
Differential Revision: https://reviews.llvm.org/D27345
llvm-svn: 289179
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 050c42a3738..f5d44f8f207 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2350,7 +2350,11 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDistributeParallelForSimdDirective = 273, - CXCursor_LastStmt = CXCursor_OMPTeamsDistributeParallelForSimdDirective, + /** \brief OpenMP teams distribute parallel for directive. + */ + CXCursor_OMPTeamsDistributeParallelForDirective = 274, + + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeParallelForDirective, /** * \brief Cursor that represents the translation unit itself. |