commit 1c858ba7e302c2e0bcff1e54c599865eae4c3578 (tree)
parent d4882d10f86e0559af5ed1405a46aa2651373821
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Sat, 2 Aug 2025 21:11:38 +0200
llvm: remove f16 special case for soft float aarch64
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig
@@ -12870,10 +12870,6 @@ fn backendSupportsF16(target: *const std.Target) bool {
.thumb,
.thumbeb,
=> target.abi.float() == .soft or target.cpu.has(.arm, .fullfp16),
- // https://github.com/llvm/llvm-project/issues/129394
- .aarch64,
- .aarch64_be,
- => target.cpu.has(.aarch64, .fp_armv8),
else => true,
};
}