diff options
author | Michael Wong <fraggamuffin@gmail.com> | 2015-07-21 13:44:28 +0000 |
---|---|---|
committer | Michael Wong <fraggamuffin@gmail.com> | 2015-07-21 13:44:28 +0000 |
commit | 65f367fcbbf38e599b2f747ca101c97d40c6420d (patch) | |
tree | fb0045186e3262cb10d2e591043d47cbba1c2b18 /clang/include/clang-c | |
parent | fbb86b2350e58876c243c882b3315c45888453dc (diff) | |
download | bcm5719-llvm-65f367fcbbf38e599b2f747ca101c97d40c6420d.tar.gz bcm5719-llvm-65f367fcbbf38e599b2f747ca101c97d40c6420d.zip |
Commit for http://reviews.llvm.org/D10765
for OpenMP 4 target data directive parsing and sema.
This commit is on behalf of Kelvin Li.
llvm-svn: 242785
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index fad9cfa61b3..2794965d5b9 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2227,17 +2227,21 @@ enum CXCursorKind { /** \brief OpenMP taskgroup directive. */ - CXCursor_OMPTaskgroupDirective = 254, + CXCursor_OMPTaskgroupDirective = 254, /** \brief OpenMP cancellation point directive. */ - CXCursor_OMPCancellationPointDirective = 255, + CXCursor_OMPCancellationPointDirective = 255, /** \brief OpenMP cancel directive. */ - CXCursor_OMPCancelDirective = 256, + CXCursor_OMPCancelDirective = 256, - CXCursor_LastStmt = CXCursor_OMPCancelDirective, + /** \brief OpenMP target data directive. + */ + CXCursor_OMPTargetDataDirective = 257, + + CXCursor_LastStmt = CXCursor_OMPTargetDataDirective, /** * \brief Cursor that represents the translation unit itself. |