about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-02-22 12:16:28 +0100
committerGitHub <noreply@github.com>2022-02-22 12:16:28 +0100
commit1cf2e6993e58e13abb03f487f401731fe77b5a33 (patch)
tree80ed8f1b12d21e15830668c38c6d1ff47a75ea4e /compiler/rustc_codegen_ssa
parent58a721af9f818bdf57f86448557b45c5ae19a3ef (diff)
parenta60b79137ca7829797111a63d8f480316af71aa8 (diff)
downloadrust-1cf2e6993e58e13abb03f487f401731fe77b5a33.tar.gz
rust-1cf2e6993e58e13abb03f487f401731fe77b5a33.zip
Rollup merge of #94169 - Amanieu:asm_stuff, r=nagisa
Fix several asm! related issues

This is a combination of several fixes, each split into a separate commit. Splitting these into PRs is not practical since they conflict with each other.

Fixes #92378
Fixes #85247

r? ``@nagisa``
Diffstat (limited to 'compiler/rustc_codegen_ssa')
-rw-r--r--compiler/rustc_codegen_ssa/src/target_features.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs
index f31b0ee592e..77166c89735 100644
--- a/compiler/rustc_codegen_ssa/src/target_features.rs
+++ b/compiler/rustc_codegen_ssa/src/target_features.rs
@@ -36,7 +36,6 @@ const ARM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
     // #[target_feature].
     ("thumb-mode", Some(sym::arm_target_feature)),
     ("thumb2", Some(sym::arm_target_feature)),
-    ("reserve-r9", Some(sym::arm_target_feature)),
 ];
 
 const AARCH64_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[