summaryrefslogtreecommitdiff
path: root/contrib/llvm-project/clang/include/clang/Basic/CapturedStmt.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/clang/include/clang/Basic/CapturedStmt.h')
-rw-r--r--contrib/llvm-project/clang/include/clang/Basic/CapturedStmt.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/llvm-project/clang/include/clang/Basic/CapturedStmt.h b/contrib/llvm-project/clang/include/clang/Basic/CapturedStmt.h
new file mode 100644
index 000000000000..029e1144eaf7
--- /dev/null
+++ b/contrib/llvm-project/clang/include/clang/Basic/CapturedStmt.h
@@ -0,0 +1,24 @@
+//===--- CapturedStmt.h - Types for CapturedStmts ---------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+
+#ifndef LLVM_CLANG_BASIC_CAPTUREDSTMT_H
+#define LLVM_CLANG_BASIC_CAPTUREDSTMT_H
+
+namespace clang {
+
+/// The different kinds of captured statement.
+enum CapturedRegionKind {
+ CR_Default,
+ CR_ObjCAtFinally,
+ CR_OpenMP
+};
+
+} // end namespace clang
+
+#endif // LLVM_CLANG_BASIC_CAPTUREDSTMT_H