We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e11b1 commit b67a656Copy full SHA for b67a656
1 file changed
compiler/rustc_target/src/target_features.rs
@@ -97,6 +97,7 @@ const ARM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
97
("neon", Unstable(sym::arm_target_feature), &["vfp3"]),
98
("rclass", Unstable(sym::arm_target_feature), &[]),
99
("sha2", Unstable(sym::arm_target_feature), &["neon"]),
100
+ ("soft-float", Forbidden, &[]), // changes float ABI
101
// This is needed for inline assembly, but shouldn't be stabilized as-is
102
// since it should be enabled per-function using #[instruction_set], not
103
// #[target_feature].
0 commit comments