diff options
| author | Havard Eidnes <he@NetBSD.org> | 2023-10-29 13:53:24 +0000 |
|---|---|---|
| committer | Havard Eidnes <he@NetBSD.org> | 2023-10-29 13:53:24 +0000 |
| commit | 5e6c313cafd636bf54973d64875ebeba635dc612 (patch) | |
| tree | 000670c76e5e4b925342f92108f1ec968ac37fc1 | |
| parent | 82b447a0cc47c5b476fb85eaeba865c97490f93f (diff) | |
mipsel_unknown_netbsd.rs: fix indentation.
| -rw-r--r-- | compiler/rustc_target/src/spec/mipsel_unknown_netbsd.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/compiler/rustc_target/src/spec/mipsel_unknown_netbsd.rs b/compiler/rustc_target/src/spec/mipsel_unknown_netbsd.rs index 74b324d57a0..651358d6422 100644 --- a/compiler/rustc_target/src/spec/mipsel_unknown_netbsd.rs +++ b/compiler/rustc_target/src/spec/mipsel_unknown_netbsd.rs @@ -7,15 +7,15 @@ pub fn target() -> Target { base.cpu = "mips32".into(); Target { - llvm_target: "mipsel-unknown-netbsd".into(), - pointer_width: 32, - data_layout: "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".into(), - arch: "mips".into(), - options: TargetOptions { - features: "+soft-float".into(), - mcount: "__mcount".into(), - endian: Endian::Little, - ..base - }, + llvm_target: "mipsel-unknown-netbsd".into(), + pointer_width: 32, + data_layout: "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".into(), + arch: "mips".into(), + options: TargetOptions { + features: "+soft-float".into(), + mcount: "__mcount".into(), + endian: Endian::Little, + ..base + }, } } |
