commit b122b9fbe0e4e63b97eb89dc5049baa3db1f1e1b (tree)
parent 4adf63aefc62efb301c27d9f6ec71f92f52c23ca
Author: David Rubin <daviru007@icloud.com>
Date: Fri, 25 Oct 2024 20:00:43 -0700
remove default field for `RiscvInterruptOptions.Mode`
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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,