aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/floatop.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-08-18 02:22:40 -0400
committerAndrew Kelley <andrew@ziglang.org>2023-09-19 09:37:52 -0700
commitd65318847ff4f8eb9d6655b27bf769ea94c2c3d7 (patch)
treee048c9b992e0703ae1007a7bc634ea176da6b65b /test/behavior/floatop.zig
parent821971106383e6e64e679c4402278399798c76eb (diff)
downloadzig-d65318847ff4f8eb9d6655b27bf769ea94c2c3d7.tar.gz
zig-d65318847ff4f8eb9d6655b27bf769ea94c2c3d7.zip
compiler_rt: fix fp sub being optimized to call itself
Closes #16844 Reduces #16846
Diffstat (limited to 'test/behavior/floatop.zig')
-rw-r--r--test/behavior/floatop.zig40
1 files changed, 0 insertions, 40 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig
index 4a6023b6cc..3583a67701 100644
--- a/test/behavior/floatop.zig
+++ b/test/behavior/floatop.zig
@@ -711,18 +711,6 @@ test "@floor f80" {
return error.SkipZigTest;
}
- if (builtin.zig_backend == .stage2_llvm and
- (builtin.cpu.arch == .powerpc64le or builtin.cpu.arch == .aarch64))
- {
- // https://github.com/ziglang/zig/issues/16844
- return error.SkipZigTest;
- }
-
- if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isMIPS()) {
- // https://github.com/ziglang/zig/issues/16846
- return error.SkipZigTest;
- }
-
try testFloorLegacy(f80, 12.0);
try comptime testFloorLegacy(f80, 12.0);
}
@@ -734,13 +722,6 @@ test "@floor f128" {
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_llvm and
- (builtin.cpu.arch == .powerpc64le or builtin.cpu.arch == .aarch64))
- {
- // https://github.com/ziglang/zig/issues/16844
- return error.SkipZigTest;
- }
-
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isARM()) {
// https://github.com/ziglang/zig/issues/16848
return error.SkipZigTest;
@@ -831,13 +812,6 @@ test "@ceil f80" {
return error.SkipZigTest;
}
- if (builtin.zig_backend == .stage2_llvm and
- (builtin.cpu.arch == .powerpc64le or builtin.cpu.arch == .aarch64))
- {
- // https://github.com/ziglang/zig/issues/16844
- return error.SkipZigTest;
- }
-
try testCeilLegacy(f80, 12.0);
try comptime testCeilLegacy(f80, 12.0);
}
@@ -849,13 +823,6 @@ test "@ceil f128" {
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_llvm and
- (builtin.cpu.arch == .powerpc64le or builtin.cpu.arch == .aarch64))
- {
- // https://github.com/ziglang/zig/issues/16844
- return error.SkipZigTest;
- }
-
try testCeilLegacy(f128, 12.0);
try comptime testCeilLegacy(f128, 12.0);
}
@@ -962,13 +929,6 @@ test "@trunc f128" {
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_llvm and
- (builtin.cpu.arch == .powerpc64le or builtin.cpu.arch == .aarch64))
- {
- // https://github.com/ziglang/zig/issues/16844
- return error.SkipZigTest;
- }
-
try testTruncLegacy(f128, 12.0);
try comptime testTruncLegacy(f128, 12.0);
}