compiler_rt: no longer skip f80 conversion test

This is working again.

Closes #11408
This commit is contained in:
r00ster91 2022-12-16 00:18:25 +01:00
parent 0d92fcf6a5
commit 20c5b6ad65

View File

@ -1,5 +1,4 @@
const std = @import("std");
const builtin = @import("builtin");
const testing = std.testing;
const math = std.math;
@ -811,8 +810,6 @@ test "conversion to f32" {
}
test "conversion to f80" {
if (builtin.zig_backend == .stage1 and builtin.cpu.arch != .x86_64)
return error.SkipZigTest; // https://github.com/ziglang/zig/issues/11408
if (std.debug.runtime_safety) return error.SkipZigTest;
const intToFloat = @import("./int_to_float.zig").intToFloat;