Skip to content

Commit abd8ffd

Browse files
author
AMG
committed
chore: formatted code
1 parent 094fd6b commit abd8ffd

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

compiler/rustc_target/src/spec/armv7_sony_vita_eabihf.rs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1-
use crate::spec::{LinkArgs, LinkerFlavor, PanicStrategy, RelocModel, Target, TargetOptions};
21
use crate::abi::Endian;
2+
use crate::spec::{LinkArgs, LinkerFlavor, PanicStrategy, RelocModel, Target, TargetOptions};
33

44
/// A base target for PlayStation Vita devices using the VITASDK toolchain.
55
///
66
/// Requires the VITASDK toolchain on the host system.
77
88
pub fn target() -> Target {
99
let mut pre_link_args = LinkArgs::new();
10-
pre_link_args.insert(
11-
LinkerFlavor::Gcc,
12-
vec![
13-
"-Wl,-q".to_string(),
14-
],
15-
);
10+
pre_link_args.insert(LinkerFlavor::Gcc, vec!["-Wl,-q".to_string()]);
1611

1712
Target {
1813
llvm_target: "armv7a-vita-eabihf".to_string(),

0 commit comments

Comments
 (0)