diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-07 13:01:15 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2014-07-07 13:01:15 +0000 |
commit | 4acb859fbdad4b5bc9208d3bfaea6847a682e26f (patch) | |
tree | 9e7b794b1f6f141bc4141dbb84cc0d9a1a9e830a /clang/include/clang-c | |
parent | 8a8b850c98f392ec21d5b1e99338e0145d57fe69 (diff) | |
download | bcm5719-llvm-4acb859fbdad4b5bc9208d3bfaea6847a682e26f.tar.gz bcm5719-llvm-4acb859fbdad4b5bc9208d3bfaea6847a682e26f.zip |
[OPENMP] Added initial support for 'omp parallel for'.
llvm-svn: 212453
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 4819293c734..1b9e993f338 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2155,9 +2155,13 @@ enum CXCursorKind { */ CXCursor_OMPSingleDirective = 237, + /** \brief OpenMP parallel for directive. + */ + CXCursor_OMPParallelForDirective = 238, + /** \brief Windows Structured Exception Handling's leave statement. */ - CXCursor_SEHLeaveStmt = 238, + CXCursor_SEHLeaveStmt = 239, CXCursor_LastStmt = CXCursor_SEHLeaveStmt, |