diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2022-10-24 23:52:13 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2022-10-25 05:22:55 -0400 |
| commit | 94425fe46edb326c38ccf87872b2167bc8f24643 (patch) | |
| tree | f1314273ee8bc88729636ef63e7039a31db3f338 /test/behavior/floatop.zig | |
| parent | 6021edd7cee104f69c9ceb1af27e46637cab79e3 (diff) | |
| download | zig-94425fe46edb326c38ccf87872b2167bc8f24643.tar.gz zig-94425fe46edb326c38ccf87872b2167bc8f24643.zip | |
cbe: improve floating point type support
Diffstat (limited to 'test/behavior/floatop.zig')
| -rw-r--r-- | test/behavior/floatop.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig index fa2eb2f8f0..bdfdaacf01 100644 --- a/test/behavior/floatop.zig +++ b/test/behavior/floatop.zig @@ -670,7 +670,6 @@ test "comptime fixed-width float zero divided by zero produces NaN" { if (builtin.zig_backend == .stage2_x86_64) 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_c) return error.SkipZigTest; // TODO inline for (.{ f16, f32, f64, f80, f128 }) |F| { try expect(math.isNan(@as(F, 0) / @as(F, 0))); @@ -763,7 +762,6 @@ test "nan negation f128" { 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_c) return error.SkipZigTest; // TODO const nan_comptime = comptime math.nan(f128); const neg_nan_comptime = -nan_comptime; |
