aboutsummaryrefslogtreecommitdiff
path: root/clang/include/clang-c
diff options
context:
space:
mode:
authorMike Rice <michael.p.rice@intel.com>2021-03-22 18:13:29 -0700
committerMike Rice <michael.p.rice@intel.com>2021-03-30 14:12:53 -0700
commitb7899ba0e8b7a7b8fbab06a8b3f2d70f16d7a250 (patch)
treee3983726247cd2ad0d3c9b078ca440fc1caa05dd /clang/include/clang-c
parentc06a8f9caa51c7ea71dac716e0a35f5e343e4546 (diff)
downloadllvm-b7899ba0e8b7a7b8fbab06a8b3f2d70f16d7a250.zip
llvm-b7899ba0e8b7a7b8fbab06a8b3f2d70f16d7a250.tar.gz
llvm-b7899ba0e8b7a7b8fbab06a8b3f2d70f16d7a250.tar.bz2
[OPENMP51]Initial support for the dispatch directive.
Added basic parsing/sema/serialization support for dispatch directive. Differential Revision: https://reviews.llvm.org/D99537
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r--clang/include/clang-c/Index.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index bcc0630..696e271 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/include/clang-c/Index.h
@@ -2580,7 +2580,11 @@ enum CXCursorKind {
*/
CXCursor_OMPInteropDirective = 290,
- CXCursor_LastStmt = CXCursor_OMPInteropDirective,
+ /** OpenMP dispatch directive.
+ */
+ CXCursor_OMPDispatchDirective = 291,
+
+ CXCursor_LastStmt = CXCursor_OMPDispatchDirective,
/**
* Cursor that represents the translation unit itself.