aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-05-10 19:34:20 +0200
committerJakub Konka <kubkon@jakubkonka.com>2022-05-10 19:34:20 +0200
commitf131e41db9f8b1b1bbd678b52ef377821d83bddc (patch)
treecea3ed7aabb22c3decdc7934fa1019b5799b3e92 /test/behavior/math.zig
parent9725205859517ce81e201b79b55f7a7c2cb87f20 (diff)
downloadzig-f131e41db9f8b1b1bbd678b52ef377821d83bddc.tar.gz
zig-f131e41db9f8b1b1bbd678b52ef377821d83bddc.zip
x64: implement shl_exact and shr_exact
Diffstat (limited to 'test/behavior/math.zig')
-rw-r--r--test/behavior/math.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index dd609c9b08..53b11d1d9f 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -1065,8 +1065,6 @@ fn testShlTrunc(x: u16) !void {
}
test "exact shift left" {
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
-
try testShlExact(0b00110101);
comptime try testShlExact(0b00110101);
}
@@ -1076,8 +1074,6 @@ fn testShlExact(x: u8) !void {
}
test "exact shift right" {
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
-
try testShrExact(0b10110100);
comptime try testShrExact(0b10110100);
}