]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_target/spec/aarch64_fuchsia.rs
Auto merge of #68414 - michaelwoerister:share-drop-glue, r=alexcrichton
[rust.git] / src / librustc_target / spec / aarch64_fuchsia.rs
index 308954d56f8bf4b9c67f00b5bd5a74f5511e32ee..c0d5d575b6eb5413e2ac3ca36a3763f8e23f4186 100644 (file)
@@ -1,4 +1,4 @@
-use crate::spec::{LldFlavor, LinkerFlavor, Target, TargetOptions, TargetResult};
+use crate::spec::{LinkerFlavor, LldFlavor, Target, TargetOptions, TargetResult};
 
 pub fn target() -> TargetResult {
     let mut base = super::fuchsia_base::opts();
@@ -15,9 +15,6 @@ pub fn target() -> TargetResult {
         target_env: String::new(),
         target_vendor: String::new(),
         linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
-        options: TargetOptions {
-            abi_blacklist: super::arm_base::abi_blacklist(),
-            .. base
-        },
+        options: TargetOptions { abi_blacklist: super::arm_base::abi_blacklist(), ..base },
     })
 }