From d577654e66e3a69592df2a37817260b59a2a190b Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 7 May 2021 20:03:27 -0700 Subject: stage2: fix stack overflow in `@setEvalBranchQuota` test case Some of the reworkings in this branch put us over the limit, on Linux, where the kernel disregards the fact that we ask for 16 MiB in the ELF file. So we ask for more stack space in `main`. --- src/Module.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Module.zig') diff --git a/src/Module.zig b/src/Module.zig index 0601245db3..4a4f0206d7 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -1088,7 +1088,7 @@ pub const Scope = struct { /// for the one that will be the same for all Block instances. src_decl: *Decl, instructions: ArrayListUnmanaged(*ir.Inst), - label: ?Label = null, + label: ?*Label = null, inlining: ?*Inlining, is_comptime: bool, -- cgit v1.2.3