diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-17 20:39:55 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-18 20:42:38 -0400 |
| commit | 79bdd2bd633d4817da07e20026756698514d5d7e (patch) | |
| tree | 78c3017eb799343f5f3db9cb9179d9f3fa1c0849 /test | |
| parent | 60e69fdaa15a304f374df3e067e08aeaa622d412 (diff) | |
| download | zig-79bdd2bd633d4817da07e20026756698514d5d7e.tar.gz zig-79bdd2bd633d4817da07e20026756698514d5d7e.zip | |
x86_64: implement saturating add/sub for weird types
Diffstat (limited to 'test')
| -rw-r--r-- | test/behavior/saturating_arithmetic.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/saturating_arithmetic.zig b/test/behavior/saturating_arithmetic.zig index 77304b1c6b..18baada0e5 100644 --- a/test/behavior/saturating_arithmetic.zig +++ b/test/behavior/saturating_arithmetic.zig @@ -5,7 +5,6 @@ const maxInt = std.math.maxInt; const expect = std.testing.expect; test "saturating add" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO 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_sparc64) return error.SkipZigTest; // TODO @@ -79,7 +78,6 @@ test "saturating add 128bit" { } test "saturating subtraction" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO 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_sparc64) return error.SkipZigTest; // TODO |
