diff options
| author | bors <bors@rust-lang.org> | 2021-04-03 23:17:58 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-04-03 23:17:58 +0000 |
| commit | 2616ab1c57e2d69f989307389b27ee996ed82575 (patch) | |
| tree | 85aae2d9145419b72dab28a4b24f72cfb066cc22 /compiler/rustc_codegen_ssa/src | |
| parent | 0b417ab5cdfdedffd74fb22cf22d27033c851304 (diff) | |
| parent | b2daca745d6899ee0f8d3755c265585ae183f0e3 (diff) | |
| download | rust-2616ab1c57e2d69f989307389b27ee996ed82575.tar.gz rust-2616ab1c57e2d69f989307389b27ee996ed82575.zip | |
Auto merge of #83811 - JohnTitor:rollup-hnw1xwz, r=JohnTitor
Rollup of 7 pull requests Successful merges: - #82487 (Constify methods of `std::net::SocketAddr`, `SocketAddrV4` and `SocketAddrV6`) - #83756 (rustdoc: Rename internal uses of `spotlight`) - #83780 (Document "standard" conventions for error messages) - #83787 (Monomorphization doc fix) - #83803 (add fp-armv8 for ARM_ALLOWED_FEATURES) - #83804 (Remove nightly features in rustc_type_ir) - #83810 (Fix rustc_lint_defs documentation typo) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/target_features.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs index fd18f42f2dd..a69e6d2b86d 100644 --- a/compiler/rustc_codegen_ssa/src/target_features.rs +++ b/compiler/rustc_codegen_ssa/src/target_features.rs @@ -26,6 +26,7 @@ const ARM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[ ("vfp2", Some(sym::arm_target_feature)), ("vfp3", Some(sym::arm_target_feature)), ("vfp4", Some(sym::arm_target_feature)), + ("fp-armv8", Some(sym::arm_target_feature)), // This is needed for inline assembly, but shouldn't be stabilized as-is // since it should be enabled per-function using #[instruction_set], not // #[target_feature]. |
