about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2021-09-19 12:15:03 -0700
committerMike Leany <55358344+mikeleany@users.noreply.github.com>2021-10-13 08:14:12 -0600
commitb0d1e3be23bdaa4e103154750ef9bce7d05cf978 (patch)
treec7ca88ddf47fa595c4a7a34aec86c46f32b4c862
parentb0efa05e5acaaa6b973e05835d2fd46f58cc5c11 (diff)
downloadrust-b0d1e3be23bdaa4e103154750ef9bce7d05cf978.tar.gz
rust-b0d1e3be23bdaa4e103154750ef9bce7d05cf978.zip
x86_64-unknown-none: Drop the `abi` field
(Work on this target sponsored by Profian.)
-rw-r--r--compiler/rustc_target/src/spec/x86_64_unknown_none.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/x86_64_unknown_none.rs b/compiler/rustc_target/src/spec/x86_64_unknown_none.rs
index a3ab2621c78..8679814b782 100644
--- a/compiler/rustc_target/src/spec/x86_64_unknown_none.rs
+++ b/compiler/rustc_target/src/spec/x86_64_unknown_none.rs
@@ -8,7 +8,6 @@ use super::{CodeModel, LinkerFlavor, LldFlavor, PanicStrategy, Target, TargetOpt
 
 pub fn target() -> Target {
     let opts = TargetOptions {
-        abi: "softfloat".to_string(),
         linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
         linker: Some("rust-lld".to_owned()),
         features: "-mmx,-sse,+soft-float".to_string(),