Skip to content

Commit 1901c41

Browse files
committed
Revert "Disable f16 on AArch64 without the neon feature"
The LLVM issue [1] was resolved and the fix was synced to rust-lang/rust in [2]. This reverts commit 5cf417a. [1]: llvm/llvm-project#129394 [2]: rust-lang/rust#138695
1 parent f1b9055 commit 1901c41

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

compiler-builtins/configure.rs

-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ pub fn configure_f16_f128(target: &Target) {
9191
let f16_enabled = match target.arch.as_str() {
9292
// Unsupported <https://github.com/llvm/llvm-project/issues/94434>
9393
"arm64ec" => false,
94-
// Crash in LLVM20 <https://github.com/llvm/llvm-project/issues/129394>
95-
"aarch64" if !target.features.iter().any(|f| f == "neon") => false,
9694
// Selection failure <https://github.com/llvm/llvm-project/issues/50374>
9795
"s390x" => false,
9896
// Infinite recursion <https://github.com/llvm/llvm-project/issues/97981>

0 commit comments

Comments
 (0)