mirror of
https://github.com/ziglang/zig.git
synced 2026-02-16 06:18:32 +00:00
compiler-rt: Disable __aeabi_drsub test on armeb.
https://github.com/ziglang/zig/issues/22061
This commit is contained in:
parent
130f7c2ed8
commit
620f69c3b4
@ -233,6 +233,7 @@ test "__aeabi_frsub" {
|
||||
|
||||
test "__aeabi_drsub" {
|
||||
if (!builtin.cpu.arch.isArm() or builtin.cpu.arch.isThumb()) return error.SkipZigTest;
|
||||
if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22061
|
||||
const inf64 = std.math.inf(f64);
|
||||
const maxf64 = std.math.floatMax(f64);
|
||||
const frsub_data = [_][3]f64{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user