about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-08-24 19:16:41 +0200
committerJorge Aparicio <jorge@japaric.io>2018-08-26 11:27:05 +0200
commit2c3a693dfa2b6b760a47a9f7b8556b568062c4fe (patch)
tree45480aabefd8015be810e1ca8cf9c7254115ece9
parent63d94905fab4293041041c1497d299d00aabb868 (diff)
downloadrust-2c3a693dfa2b6b760a47a9f7b8556b568062c4fe.tar.gz
rust-2c3a693dfa2b6b760a47a9f7b8556b568062c4fe.zip
make the armebv7r target more consistent with the armv7r one
by removing the redundant +v7 feature
-rw-r--r--src/librustc_target/spec/armebv7r_none_eabihf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_target/spec/armebv7r_none_eabihf.rs b/src/librustc_target/spec/armebv7r_none_eabihf.rs
index c111d2ffe8b..e75e05eb945 100644
--- a/src/librustc_target/spec/armebv7r_none_eabihf.rs
+++ b/src/librustc_target/spec/armebv7r_none_eabihf.rs
@@ -30,7 +30,7 @@ pub fn target() -> TargetResult {
             executables: true,
             relocation_model: "static".to_string(),
             panic_strategy: PanicStrategy::Abort,
-            features: "+v7,+vfp3,+d16,+fp-only-sp".to_string(),
+            features: "+vfp3,+d16,+fp-only-sp".to_string(),
             max_atomic_width: Some(32),
             abi_blacklist: super::arm_base::abi_blacklist(),
             emit_debug_gdb_scripts: false,