diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-05 04:10:38 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-05 04:10:38 -0400 |
| commit | cc6694a323950d53e79afc76ba5a8000386f555b (patch) | |
| tree | cd2b3ab83fa10e402dd53533e40156fad50120e0 /test/behavior/floatop.zig | |
| parent | c2ec518fe2704422017b09c0808ec1a40c0ec0ed (diff) | |
| download | zig-cc6694a323950d53e79afc76ba5a8000386f555b.tar.gz zig-cc6694a323950d53e79afc76ba5a8000386f555b.zip | |
x86_64: implement C abi for f128
Diffstat (limited to 'test/behavior/floatop.zig')
| -rw-r--r-- | test/behavior/floatop.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig index ab32a3b03b..7dc5e53595 100644 --- a/test/behavior/floatop.zig +++ b/test/behavior/floatop.zig @@ -130,7 +130,7 @@ test "cmp f128" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest; if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf) return error.SkipZigTest; try testCmp(f128); try comptime testCmp(f128); |
