diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-07-15 13:36:46 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-07-20 12:19:16 -0700 |
| commit | 12c10139e3e0166e91d2dbb1801c2054ca12d413 (patch) | |
| tree | f084c36fecb08bd36eb0733263647b12ac1fbb05 /src/value.zig | |
| parent | 0da66339096c21d9ca524ff7a0c11a5707b60041 (diff) | |
| download | zig-12c10139e3e0166e91d2dbb1801c2054ca12d413.tar.gz zig-12c10139e3e0166e91d2dbb1801c2054ca12d413.zip | |
Sema: finish reworking for AIR memory layout except switch
Diffstat (limited to 'src/value.zig')
| -rw-r--r-- | src/value.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.zig b/src/value.zig index 0f7194d8c1..df3a97b09a 100644 --- a/src/value.zig +++ b/src/value.zig @@ -1700,7 +1700,7 @@ pub const Value = extern union { /// peer type resolution. This is stored in a separate list so that /// the items are contiguous in memory and thus can be passed to /// `Module.resolvePeerTypes`. - stored_inst_list: std.ArrayListUnmanaged(Air.Inst.Index) = .{}, + stored_inst_list: std.ArrayListUnmanaged(Air.Inst.Ref) = .{}, }, }; |
