aboutsummaryrefslogtreecommitdiff
path: root/src/type.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-01-14 23:05:33 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-01-14 23:08:11 -0700
commit41f3799bf0cfc8241f458094781ba45967e2576e (patch)
treeb26beee8643ba7ebac7774898366f6add4667e3b /src/type.zig
parentba0f72363accc19edbfc5a7ae42d5a8970f56f64 (diff)
downloadzig-41f3799bf0cfc8241f458094781ba45967e2576e.tar.gz
zig-41f3799bf0cfc8241f458094781ba45967e2576e.zip
Sema: fix array_init with runtime element
Previously it emitted an invalid AIR encoding.
Diffstat (limited to 'src/type.zig')
-rw-r--r--src/type.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/type.zig b/src/type.zig
index b759a4bc34..e14c81f707 100644
--- a/src/type.zig
+++ b/src/type.zig
@@ -4511,6 +4511,7 @@ pub const Type = extern union {
pub const @"u8" = initTag(.u8);
pub const @"u32" = initTag(.u32);
+ pub const @"u64" = initTag(.u64);
pub const @"bool" = initTag(.bool);
pub const @"usize" = initTag(.usize);
pub const @"isize" = initTag(.isize);