aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-05-10 21:30:39 +0200
committerJakub Konka <kubkon@jakubkonka.com>2022-05-10 21:30:39 +0200
commit3c69810fe6660fa3115d345bb60b3f811ac7c8c0 (patch)
tree4a4c55670c05135cc28b2d0509245588aee05207 /test/behavior/math.zig
parentf6f98a621f70a10078fe3de688fe4f8c2e027a30 (diff)
downloadzig-3c69810fe6660fa3115d345bb60b3f811ac7c8c0.tar.gz
zig-3c69810fe6660fa3115d345bb60b3f811ac7c8c0.zip
x64: fix binary not implementation
Diffstat (limited to 'test/behavior/math.zig')
-rw-r--r--test/behavior/math.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index 85b62e0275..53a3f61d14 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -362,7 +362,6 @@ fn comptimeAdd(comptime a: comptime_int, comptime b: comptime_int) comptime_int
test "binary not" {
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
try expect(comptime x: {
break :x ~@as(u16, 0b1010101010101010) == 0b0101010101010101;