diff options
Diffstat (limited to 'src/value.zig')
| -rw-r--r-- | src/value.zig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/value.zig b/src/value.zig index dc0b150abc..f37fec13bb 100644 --- a/src/value.zig +++ b/src/value.zig @@ -71,7 +71,7 @@ pub const Value = extern union { address_space_type, float_mode_type, reduce_op_type, - call_options_type, + modifier_type, prefetch_options_type, export_options_type, extern_options_type, @@ -264,7 +264,7 @@ pub const Value = extern union { .address_space_type, .float_mode_type, .reduce_op_type, - .call_options_type, + .modifier_type, .prefetch_options_type, .export_options_type, .extern_options_type, @@ -467,7 +467,7 @@ pub const Value = extern union { .address_space_type, .float_mode_type, .reduce_op_type, - .call_options_type, + .modifier_type, .prefetch_options_type, .export_options_type, .extern_options_type, @@ -723,7 +723,7 @@ pub const Value = extern union { .address_space_type => return out_stream.writeAll("std.builtin.AddressSpace"), .float_mode_type => return out_stream.writeAll("std.builtin.FloatMode"), .reduce_op_type => return out_stream.writeAll("std.builtin.ReduceOp"), - .call_options_type => return out_stream.writeAll("std.builtin.CallOptions"), + .modifier_type => return out_stream.writeAll("std.builtin.CallModifier"), .prefetch_options_type => return out_stream.writeAll("std.builtin.PrefetchOptions"), .export_options_type => return out_stream.writeAll("std.builtin.ExportOptions"), .extern_options_type => return out_stream.writeAll("std.builtin.ExternOptions"), @@ -963,7 +963,7 @@ pub const Value = extern union { .address_space_type => Type.initTag(.address_space), .float_mode_type => Type.initTag(.float_mode), .reduce_op_type => Type.initTag(.reduce_op), - .call_options_type => Type.initTag(.call_options), + .modifier_type => Type.initTag(.modifier), .prefetch_options_type => Type.initTag(.prefetch_options), .export_options_type => Type.initTag(.export_options), .extern_options_type => Type.initTag(.extern_options), |
