aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2020-11-09 17:26:24 +0100
committerLemonBoy <thatlemon@gmail.com>2020-11-20 08:38:11 +0100
commit2193bbfd938ef562abdf1c9f1aced9acb24009bd (patch)
tree038a2c9f1e30e8294cc86bcd89e712d2e36c1fc3 /test
parentf2b4e6b2e7ba9da26f69e2d978978adaf8b3f55a (diff)
downloadzig-2193bbfd938ef562abdf1c9f1aced9acb24009bd.tar.gz
zig-2193bbfd938ef562abdf1c9f1aced9acb24009bd.zip
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 (limited to 'test')
-rw-r--r--test/stage1/behavior/widening.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/stage1/behavior/widening.zig b/test/stage1/behavior/widening.zig
index 71f8ae482e..2f215ccb11 100644
--- 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;