Commit 20c5b6ad65
Changed files (1)
lib
compiler_rt
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;