diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-02 03:24:04 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-03 04:25:14 -0400 |
| commit | 9ccdbca635a3b5a26b65ab8e52533d3acc8f2f5e (patch) | |
| tree | da608c7ad4fc308a7707863d7cc917e4af41b02f /test/behavior/floatop.zig | |
| parent | 31429a4e8649961624878d11e1bb330107013086 (diff) | |
| download | zig-9ccdbca635a3b5a26b65ab8e52533d3acc8f2f5e.tar.gz zig-9ccdbca635a3b5a26b65ab8e52533d3acc8f2f5e.zip | |
x86_64: implement fabs
Diffstat (limited to 'test/behavior/floatop.zig')
| -rw-r--r-- | test/behavior/floatop.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig index f713cd035c..ecf1473d14 100644 --- a/test/behavior/floatop.zig +++ b/test/behavior/floatop.zig @@ -96,7 +96,8 @@ test "negative f128 floatToInt at compile-time" { } test "@sqrt" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_x86_64 and + comptime !std.Target.x86.featureSetHasAll(builtin.cpu.features, .{ .sse, .sse2, .sse4_1 })) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
