diff options
| author | Carlo Bertolli <cbertol@us.ibm.com> | 2015-12-14 14:51:25 +0000 |
|---|---|---|
| committer | Carlo Bertolli <cbertol@us.ibm.com> | 2015-12-14 14:51:25 +0000 |
| commit | 6200a3d0f3a545798a0a3abd11ae287a86c9b713 (patch) | |
| tree | 6fd952bd07146ac63291c2914cef8694e136d650 /clang/include/clang-c | |
| parent | bc9d4f9947ee5cd2dc686547477f77797a895b3e (diff) | |
| download | bcm5719-llvm-6200a3d0f3a545798a0a3abd11ae287a86c9b713.tar.gz bcm5719-llvm-6200a3d0f3a545798a0a3abd11ae287a86c9b713.zip | |
Add parse and sema of OpenMP distribute directive with all clauses except dist_schedule
llvm-svn: 255498
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 5aebf0973f5..e7ba2b26a4b 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2262,7 +2262,11 @@ enum CXCursorKind { */ CXCursor_OMPTaskLoopSimdDirective = 259, - CXCursor_LastStmt = CXCursor_OMPTaskLoopSimdDirective, + /** \brief OpenMP distribute directive. + */ + CXCursor_OMPDistributeDirective = 260, + + CXCursor_LastStmt = CXCursor_OMPDistributeDirective, /** * \brief Cursor that represents the translation unit itself. |

