authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-11-09 17:26:24+01:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2020-11-20 08:38:11+01:00
log2193bbfd938ef562abdf1c9f1aced9acb24009bd
tree038a2c9f1e30e8294cc86bcd89e712d2e36c1fc3
parentf2b4e6b2e7ba9da26f69e2d978978adaf8b3f55a

Skip f16 to f128 conversion test for ppc64

As for aarch64 we're waiting for LLVM to emit calls to the specific builtins that implement this conversion.

1 files changed, 1 insertions(+), 0 deletions(-)

test/stage1/behavior/widening.zig+1
......@@ -31,6 +31,7 @@ test "float widening" {
3131test "float widening f16 to f128" {
3232 // TODO https://github.com/ziglang/zig/issues/3282
3333 if (@import("builtin").arch == .aarch64) return error.SkipZigTest;
34 if (@import("builtin").arch == .powerpc64le) return error.SkipZigTest;
3435
3536 var x: f16 = 12.34;
3637 var y: f128 = x;