aboutsummaryrefslogtreecommitdiff
path: root/src/Module.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2024-01-28 01:04:38 +0200
committerVeikka Tuominen <git@vexu.eu>2024-02-01 15:22:36 +0200
commita4f27e8987ef3e2388839b6452b9f485ab82e7b7 (patch)
tree6420c218896c0f44dea7353b8a9c00b01461c2ec /src/Module.zig
parentb0bea72588c685c1d6439f61d2e842756b5fc496 (diff)
downloadzig-a4f27e8987ef3e2388839b6452b9f485ab82e7b7.tar.gz
zig-a4f27e8987ef3e2388839b6452b9f485ab82e7b7.zip
remove std.io.Mode
Diffstat (limited to 'src/Module.zig')
-rw-r--r--src/Module.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Module.zig b/src/Module.zig
index 221ea041b5..4f5b15bc1c 100644
--- a/src/Module.zig
+++ b/src/Module.zig
@@ -5237,10 +5237,6 @@ pub fn populateTestFunctions(
}
const decl = mod.declPtr(decl_index);
const test_fn_ty = decl.ty.slicePtrFieldType(mod).childType(mod);
- const null_usize = try mod.intern(.{ .opt = .{
- .ty = try mod.intern(.{ .opt_type = .usize_type }),
- .val = .none,
- } });
const array_decl_index = d: {
// Add mod.test_functions to an array decl then make the test_functions
@@ -5289,8 +5285,6 @@ pub fn populateTestFunctions(
} }),
.addr = .{ .decl = test_decl_index },
} }),
- // async_frame_size
- null_usize,
};
test_fn_val.* = try mod.intern(.{ .aggregate = .{
.ty = test_fn_ty.toIntern(),