diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-05-05 16:32:11 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-06-10 20:42:28 -0700 |
| commit | 70a4b76acaef8d4062f4d5317af398929ea6c9c4 (patch) | |
| tree | dc3f58cf0f6c0fa0efb8285a4f15706f7df883df /lib | |
| parent | 2f05b1482a6f62658cc70c252d48a24a40404aa8 (diff) | |
| download | zig-70a4b76acaef8d4062f4d5317af398929ea6c9c4.tar.gz zig-70a4b76acaef8d4062f4d5317af398929ea6c9c4.zip | |
std.builtin.AddressSpace: allocate one more bit to this enum
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/std/builtin.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index ff6d20370c..b1f1406684 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -190,7 +190,7 @@ pub const CallingConvention = enum { /// This data structure is used by the Zig language code generation and /// therefore must be kept in sync with the compiler implementation. -pub const AddressSpace = enum(u4) { +pub const AddressSpace = enum(u5) { generic, gs, fs, |
