aboutsummaryrefslogtreecommitdiff
path: root/src/Module.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-05-03 18:35:37 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-05-03 18:35:37 -0700
commit95b014caeaef6b04dc83b85e5b16823520072b44 (patch)
treea604f3621e9196ea3436318a9a394849791300b5 /src/Module.zig
parentaa4e9399db4001a49ad93f35dafbc53e3dec3cf3 (diff)
downloadzig-95b014caeaef6b04dc83b85e5b16823520072b44.tar.gz
zig-95b014caeaef6b04dc83b85e5b16823520072b44.zip
Sema: implement struct_decl instruction
Diffstat (limited to 'src/Module.zig')
-rw-r--r--src/Module.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Module.zig b/src/Module.zig
index f780dfb9f6..16a6ff6acf 100644
--- a/src/Module.zig
+++ b/src/Module.zig
@@ -501,7 +501,9 @@ pub const Struct = struct {
layout: std.builtin.TypeInfo.ContainerLayout,
status: enum {
none,
+ field_types_wip,
have_field_types,
+ layout_wip,
have_layout,
},