stage2 LLVM: Correct long double for WASM

Also, f16 is not supported on this backend.
This commit is contained in:
Cody Tapscott 2022-10-07 11:08:22 -07:00
parent 0d533433e2
commit 37c6fcafa2
2 changed files with 4 additions and 0 deletions

View File

@ -1789,6 +1789,8 @@ pub const Target = struct {
.powerpcle,
.powerpc64,
.powerpc64le,
.wasm32,
.wasm64,
=> true,
else => false,

View File

@ -10383,6 +10383,8 @@ fn backendSupportsF16(target: std.Target) bool {
.powerpcle,
.powerpc64,
.powerpc64le,
.wasm32,
.wasm64,
=> false,
else => true,
};