diff options
| author | David Rubin <daviru007@icloud.com> | 2024-10-25 20:00:43 -0700 |
|---|---|---|
| committer | David Rubin <daviru007@icloud.com> | 2024-10-25 20:00:43 -0700 |
| commit | b122b9fbe0e4e63b97eb89dc5049baa3db1f1e1b (patch) | |
| tree | f61b1d6f4bb1eaae07ddb5796b0348f9ca037492 /lib/std/builtin.zig | |
| parent | 4adf63aefc62efb301c27d9f6ec71f92f52c23ca (diff) | |
| download | zig-b122b9fbe0e4e63b97eb89dc5049baa3db1f1e1b.tar.gz zig-b122b9fbe0e4e63b97eb89dc5049baa3db1f1e1b.zip | |
remove default field for `RiscvInterruptOptions.Mode`
Diffstat (limited to 'lib/std/builtin.zig')
| -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 114a4922a2..d14675b2fc 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -470,7 +470,7 @@ pub const CallingConvention = union(enum(u8)) { /// `null` means the default for this calling convention. incoming_stack_alignment: ?u64 = null, /// The privilege mode. - mode: PrivilegeMode = .machine, + mode: PrivilegeMode, pub const PrivilegeMode = enum(u2) { supervisor, |
