llvm: Disable f128 on mips64(el).

https://github.com/llvm/llvm-project/issues/96432
This commit is contained in:
Alex Rønne Petersen 2024-08-13 07:55:27 +02:00
parent 18e94c355e
commit 2f101e2b6e
No known key found for this signature in database

View File

@ -11773,6 +11773,8 @@ fn backendSupportsF16(target: std.Target) bool {
fn backendSupportsF128(target: std.Target) bool {
return switch (target.cpu.arch) {
.amdgcn,
.mips64,
.mips64el,
.sparc,
=> false,
.aarch64,