mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 21:08:36 +00:00
stage2 LLVM: Correct long double for WASM
Also, f16 is not supported on this backend.
This commit is contained in:
parent
0d533433e2
commit
37c6fcafa2
@ -1789,6 +1789,8 @@ pub const Target = struct {
|
||||
.powerpcle,
|
||||
.powerpc64,
|
||||
.powerpc64le,
|
||||
.wasm32,
|
||||
.wasm64,
|
||||
=> true,
|
||||
|
||||
else => false,
|
||||
|
||||
@ -10383,6 +10383,8 @@ fn backendSupportsF16(target: std.Target) bool {
|
||||
.powerpcle,
|
||||
.powerpc64,
|
||||
.powerpc64le,
|
||||
.wasm32,
|
||||
.wasm64,
|
||||
=> false,
|
||||
else => true,
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user