We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00f586 commit af7eb42Copy full SHA for af7eb42
src/codegen/llvm.zig
@@ -11760,7 +11760,9 @@ fn backendSupportsF16(target: std.Target) bool {
11760
.mips64el,
11761
.s390x,
11762
=> false,
11763
- .aarch64 => std.Target.aarch64.featureSetHas(target.cpu.features, .fp_armv8),
+ .aarch64,
11764
+ .aarch64_be,
11765
+ => std.Target.aarch64.featureSetHas(target.cpu.features, .fp_armv8),
11766
else => true,
11767
};
11768
}
@@ -11773,7 +11775,9 @@ fn backendSupportsF128(target: std.Target) bool {
11773
11775
.amdgcn,
11774
11776
.sparc,
11777
11778
11779
11780
11781
11782
11783
0 commit comments