Skip to content

Commit 893e726

Browse files
committed
i586_unknown_netbsd.rs: fix formatting.
This hopefully fixes the CI run after integration of this target.
1 parent 391b472 commit 893e726

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

compiler/rustc_target/src/spec/i586_unknown_netbsd.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
use crate::spec::{Cc, Lld, LinkerFlavor, StackProbeType, Target, TargetOptions};
1+
use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target, TargetOptions};
22

33
pub fn target() -> Target {
44
let mut base = super::netbsd_base::opts();
55
base.cpu = "pentium".into();
66
base.max_atomic_width = Some(64);
7-
base.pre_link_args
8-
.entry(LinkerFlavor::Gnu(Cc::Yes, Lld::No))
9-
.or_default()
10-
.push("-m32".into());
7+
base.pre_link_args.entry(LinkerFlavor::Gnu(Cc::Yes, Lld::No)).or_default().push("-m32".into());
118
base.stack_probes = StackProbeType::Call;
129

1310
Target {

0 commit comments

Comments
 (0)