aboutsummaryrefslogtreecommitdiff
path: root/clang/include/clang-c
diff options
context:
space:
mode:
authorFazlay Rabbi <fazlay.rabbi@intel.com>2022-06-30 17:08:17 -0700
committerMike Rice <michael.p.rice@intel.com>2022-07-01 08:57:15 -0700
commit38bcd483dd461e1e00d039700d16991a166183e6 (patch)
treeffc9bf32e15a742cb2d2408f3e9bfb1317820c31 /clang/include/clang-c
parent3668d1264e2d246f7e222338b8a5cab18ce1bdab (diff)
downloadllvm-38bcd483dd461e1e00d039700d16991a166183e6.zip
llvm-38bcd483dd461e1e00d039700d16991a166183e6.tar.gz
llvm-38bcd483dd461e1e00d039700d16991a166183e6.tar.bz2
[OpenMP] Initial parsing and semantic support for 'parallel masked taskloop simd' construct
This patch gives basic parsing and semantic support for "parallel masked taskloop simd" construct introduced in OpenMP 5.1 (section 2.16.10) Differential Revision: https://reviews.llvm.org/D128946
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r--clang/include/clang-c/Index.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index 79574c8..b897910 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/include/clang-c/Index.h
@@ -2641,8 +2641,12 @@ enum CXCursorKind {
/** OpenMP parallel masked taskloop directive.
*/
CXCursor_OMPParallelMaskedTaskLoopDirective = 303,
-
- CXCursor_LastStmt = CXCursor_OMPParallelMaskedTaskLoopDirective,
+
+ /** OpenMP parallel masked taskloop simd directive.
+ */
+ CXCursor_OMPParallelMaskedTaskLoopSimdDirective = 304,
+
+ CXCursor_LastStmt = CXCursor_OMPParallelMaskedTaskLoopSimdDirective,
/**
* Cursor that represents the translation unit itself.