Skip to content

Commit 97f08e3

Browse files
committed
bit_shifting.zig now passes stage2 llvm backend
1 parent 2c6bbb4 commit 97f08e3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/behavior.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ test {
7373
_ = @import("behavior/array_llvm.zig");
7474
_ = @import("behavior/atomics.zig");
7575
_ = @import("behavior/basic_llvm.zig");
76+
_ = @import("behavior/bit_shifting.zig");
7677
_ = @import("behavior/bugs/394.zig");
7778
_ = @import("behavior/bugs/656.zig");
7879
_ = @import("behavior/bugs/1277.zig");
@@ -120,7 +121,6 @@ test {
120121
_ = @import("behavior/async_fn.zig");
121122
}
122123
_ = @import("behavior/await_struct.zig");
123-
_ = @import("behavior/bit_shifting.zig");
124124
_ = @import("behavior/bitcast_stage1.zig");
125125
_ = @import("behavior/bitreverse.zig");
126126
_ = @import("behavior/bugs/421.zig");

test/behavior/bit_shifting.zig

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ test "sharded table" {
7272

7373
try testShardedTable(u0, 0, 1);
7474
}
75+
7576
fn testShardedTable(comptime Key: type, comptime mask_bit_count: comptime_int, comptime node_count: comptime_int) !void {
7677
const Table = ShardedTable(Key, mask_bit_count, void);
7778

0 commit comments

Comments
 (0)