aboutsummaryrefslogtreecommitdiff
path: root/src/value.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2022-12-12 15:32:37 +0200
committerVeikka Tuominen <git@vexu.eu>2022-12-13 12:52:21 +0200
commit7b2a936173165002105ba5e76bed69654e132fea (patch)
tree54a77e6d627b2cdec08b57d4402f35011fd064df /src/value.zig
parent4832677c3bce61725c67306c4683921296abdff9 (diff)
downloadzig-7b2a936173165002105ba5e76bed69654e132fea.tar.gz
zig-7b2a936173165002105ba5e76bed69654e132fea.zip
remove `stack` option from `@call`
Diffstat (limited to 'src/value.zig')
-rw-r--r--src/value.zig10
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),