diff options
| author | LemonBoy <thatlemon@gmail.com> | 2020-11-09 17:26:24 +0100 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2020-11-20 08:38:11 +0100 |
| commit | 2193bbfd938ef562abdf1c9f1aced9acb24009bd (patch) | |
| tree | 038a2c9f1e30e8294cc86bcd89e712d2e36c1fc3 | |
| parent | f2b4e6b2e7ba9da26f69e2d978978adaf8b3f55a (diff) | |
| download | zig-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.
| -rw-r--r-- | test/stage1/behavior/widening.zig | 1 |
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; |
