zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 25012ab3d12ac7bcd4e53a90367afc8e97d91c36 (tree)
parent 17e46a3b97479b13a46a933206fca94d959fafe8
Author: Robin Voetter <robin@voetter.nl>
Date:   Tue, 26 Oct 2021 17:33:35 +0200

astgen: generate correct switch prong indices

Switch prong values are fetched by index in semantic analysis by prong
offset, but these were computed as capture offset. This means that a switch
where the first prong does not capture and the second does, the switch_capture
zir instruction would be assigned switch_prong 0 instead of 1.

Diffstat:
Msrc/AstGen.zig | 14+++++++-------
Mtest/behavior/switch.zig | 14++++++++++++++
2 files changed, 21 insertions(+), 7 deletions(-)

diff --git a/src/AstGen.zig b/src/AstGen.zig @@ -6070,6 +6070,13 @@ fn switchExpr( var capture_val_scope: Scope.LocalVal = undefined; const sub_scope = blk: { + const capture_index = if (is_multi_case) ci: { + multi_case_index += 1; + break :ci multi_case_index - 1; + } else ci: { + scalar_case_index += 1; + break :ci scalar_case_index - 1; + }; const payload_token = case.payload_token orelse break :blk &case_scope.base; const ident = if (token_tags[payload_token] == .asterisk) payload_token + 1 @@ -6103,13 +6110,6 @@ fn switchExpr( 0b10 => .switch_capture_multi, 0b11 => .switch_capture_multi_ref, }; - const capture_index = if (is_multi_case) ci: { - multi_case_index += 1; - break :ci multi_case_index - 1; - } else ci: { - scalar_case_index += 1; - break :ci scalar_case_index - 1; - }; break :capture try case_scope.add(.{ .tag = capture_tag, .data = .{ .switch_capture = .{ diff --git a/test/behavior/switch.zig b/test/behavior/switch.zig @@ -299,3 +299,17 @@ fn testSwitchHandleAllCasesRange(x: u8) u8 { 204...255 => 3, }; } + +test "switch on union with some prongs capturing" { + const X = union(enum) { + a, + b: i32, + }; + + var x: X = X{ .b = 10 }; + var y: i32 = switch (x) { + .a => unreachable, + .b => |b| b + 1, + }; + try expect(y == 11); +}