diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-02-27 08:29:12 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-02-27 08:29:12 +0000 |
commit | 1b59ab568333264eadb4beb81ef9c40446744736 (patch) | |
tree | b7c942713595cd71aa04071fc9c133d9cb2cf2b3 /clang/include/clang-c | |
parent | 6edfad4811795789706216bf47b39ff7a4672286 (diff) | |
download | bcm5719-llvm-1b59ab568333264eadb4beb81ef9c40446744736.tar.gz bcm5719-llvm-1b59ab568333264eadb4beb81ef9c40446744736.zip |
[OPENMP] First changes for Parsing and Sema for 'omp simd' directive support
llvm-svn: 202360
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 9c37ac745bb..02abfcab30f 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2135,7 +2135,11 @@ enum CXCursorKind { */ CXCursor_OMPParallelDirective = 232, - CXCursor_LastStmt = CXCursor_OMPParallelDirective, + /** \brief OpenMP simd directive. + */ + CXCursor_OMPSimdDirective = 233, + + CXCursor_LastStmt = CXCursor_OMPSimdDirective, /** * \brief Cursor that represents the translation unit itself. |