Skip to content

Commit 8e38ae3

Browse files
committed
Fix target-cpu fpu features on Armv8-R.
This is a follow-up to rust-lang#123159, but applied to Armv8-R. This required llvm/llvm-project#88287 to work properly. Now that this change exists in rustc's llvm, we can fix Armv8-R's default fpu features.
1 parent d3a8524 commit 8e38ae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/targets/armv8r_none_eabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub(crate) fn target() -> Target {
3030
// Reference:
3131
// Arm Cortex-R52 Processor Technical Reference Manual
3232
// - Chapter 15 Advanced SIMD and floating-point support
33-
features: "+fp-armv8,-fp64,-d32".into(),
33+
features: "+fp-armv8d16sp".into(),
3434
max_atomic_width: Some(64),
3535
emit_debug_gdb_scripts: false,
3636
// GCC defaults to 8 for arm-none here.

0 commit comments

Comments
 (0)