Skip to content

Commit 9cefeab

Browse files
authored
Merge pull request #4054 from rudkx/increase-solver-memory
Increase the amount of memory we allow the constraint solver to use.
2 parents 2a87c50 + 44fe446 commit 9cefeab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Basic/LangOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ namespace swift {
131131

132132
/// \brief The upper bound, in bytes, of temporary data that can be
133133
/// allocated by the constraint solver.
134-
unsigned SolverMemoryThreshold = 15000000;
134+
unsigned SolverMemoryThreshold = 33554432; /* 32 * 1024 * 1024 */
135135

136136
/// \brief Perform all dynamic allocations using malloc/free instead of
137137
/// optimized custom allocator, so that memory debugging tools can be used.

0 commit comments

Comments
 (0)