]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_target/spec/thumb_base.rs
Auto merge of #68414 - michaelwoerister:share-drop-glue, r=alexcrichton
[rust.git] / src / librustc_target / spec / thumb_base.rs
index ed0dbb766a8357a955179ba32d13eab5924e08a7..204f4723b70ba131f8efb107452f23932b4513cf 100644 (file)
@@ -27,8 +27,8 @@
 // differentiate these targets from our other `arm(v7)-*-*-gnueabi(hf)` targets in the context of
 // build scripts / gcc flags.
 
-use std::default::Default;
 use crate::spec::{PanicStrategy, TargetOptions};
+use std::default::Default;
 
 pub fn opts() -> TargetOptions {
     // See rust-lang/rfcs#1645 for a discussion about these defaults
@@ -50,6 +50,6 @@ pub fn opts() -> TargetOptions {
         // until we figure a way to add the pretty printers without requiring a volatile load cf.
         // rust-lang/rust#44993.
         emit_debug_gdb_scripts: false,
-        .. Default::default()
+        ..Default::default()
     }
 }