summaryrefslogtreecommitdiff
path: root/clang-r353983e/include/clang/Basic/Stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang-r353983e/include/clang/Basic/Stack.h')
-rw-r--r--clang-r353983e/include/clang/Basic/Stack.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/clang-r353983e/include/clang/Basic/Stack.h b/clang-r353983e/include/clang/Basic/Stack.h
new file mode 100644
index 00000000..e0b04099
--- /dev/null
+++ b/clang-r353983e/include/clang/Basic/Stack.h
@@ -0,0 +1,26 @@
+//===--- Stack.h - Utilities for dealing with stack space -------*- 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
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// Defines utilities for dealing with stack allocation and stack space.
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_CLANG_BASIC_STACK_H
+#define LLVM_CLANG_BASIC_STACK_H
+
+#include <cstddef>
+
+namespace clang {
+ /// The amount of stack space that Clang would like to be provided with.
+ /// If less than this much is available, we may be unable to reach our
+ /// template instantiation depth limit and other similar limits.
+ constexpr size_t DesiredStackSize = 8 << 20;
+} // end namespace clang
+
+#endif // LLVM_CLANG_BASIC_STACK_H