zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 2193bbfd938ef562abdf1c9f1aced9acb24009bd (tree)
parent f2b4e6b2e7ba9da26f69e2d978978adaf8b3f55a
Author: LemonBoy <thatlemon@gmail.com>
Date:   Mon,  9 Nov 2020 17:26:24 +0100

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.

Diffstat:
Mtest/stage1/behavior/widening.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/test/stage1/behavior/widening.zig b/test/stage1/behavior/widening.zig @@ -31,6 +31,7 @@ test "float widening" { test "float widening f16 to f128" { // TODO https://github.com/ziglang/zig/issues/3282 if (@import("builtin").arch == .aarch64) return error.SkipZigTest; + if (@import("builtin").arch == .powerpc64le) return error.SkipZigTest; var x: f16 = 12.34; var y: f128 = x;