aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-03-25 13:44:50 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-03-25 16:23:55 -0400
commit1e080e505617b8a7961971630c059592f7366223 (patch)
treea20ded8cf08eaddf48795549e649a3da0c622a6a /test/behavior/math.zig
parent6d9bdc8733419ebfc9527d114b637c57d3fd8a42 (diff)
downloadzig-1e080e505617b8a7961971630c059592f7366223.tar.gz
zig-1e080e505617b8a7961971630c059592f7366223.zip
x86_64: implement atomic loops
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 d7b8e4764b..9e3c2b02fd 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -560,7 +560,6 @@ fn testUnsignedNegationWrappingEval(x: u16) !void {
test "negation wrapping" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
try expectEqual(@as(u1, 1), negateWrap(u1, 1));
}