summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2015-12-03 09:40:15 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2015-12-03 09:40:15 +0000
commitd50b8b580df651f3786613bff826811cfcd39531 (patch)
treefda5707b86b808e3f7b2e6bb7c5aa7065c3d71a8 /include/clang-c
parent1f64d371062ab1343fe2a22e119186e5ca874135 (diff)
[OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.
OpenMP 4.5 adds directive 'taskloop simd'. Patch adds parsing/sema analysis for 'taskloop simd' directive and its clauses. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254597 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index b71647564b..5b846a518d 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2260,7 +2260,11 @@ enum CXCursorKind {
*/
CXCursor_OMPTaskLoopDirective = 258,
- CXCursor_LastStmt = CXCursor_OMPTaskLoopDirective,
+ /** \brief OpenMP taskloop simd directive.
+ */
+ CXCursor_OMPTaskLoopSimdDirective = 259,
+
+ CXCursor_LastStmt = CXCursor_OMPTaskLoopSimdDirective,
/**
* \brief Cursor that represents the translation unit itself.