| author | |
| committer | |
| log | 8c0e0cd3535d4e59a01dc49f9b93c922ca63114f |
| tree | fdd0bf824425ff9510c1d008320a6939c10f5412 |
| parent | a4526d260b6e96866e86c9e47bec5cf6fa5a0105 |
1 files changed, 1 insertions(+), 0 deletions(-)
lib/std/math.zig+1| ... | @@ -1265,6 +1265,7 @@ pub fn lerp(a: anytype, b: anytype, t: anytype) @TypeOf(a, b, t) { | ... | @@ -1265,6 +1265,7 @@ pub fn lerp(a: anytype, b: anytype, t: anytype) @TypeOf(a, b, t) { |
| 1265 | } | 1265 | } |
| 1266 | 1266 | ||
| 1267 | test "lerp" { | 1267 | test "lerp" { |
| 1268 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/17884 | ||
| 1268 | if (builtin.zig_backend == .stage2_x86_64 and | 1269 | if (builtin.zig_backend == .stage2_x86_64 and |
| 1269 | !comptime std.Target.x86.featureSetHas(builtin.cpu.features, .fma)) return error.SkipZigTest; | 1270 | !comptime std.Target.x86.featureSetHas(builtin.cpu.features, .fma)) return error.SkipZigTest; |
| 1270 | 1271 |