Commit 20c5b6ad65

r00ster91 <r00ster91@proton.me>
2022-12-16 00:18:25
compiler_rt: no longer skip f80 conversion test
This is working again. Closes #11408
1 parent 0d92fcf
Changed files (1)
lib
lib/compiler_rt/int_to_float_test.zig
@@ -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;