Skip to content

Commit 874a574

Browse files
committed
Renamed symbol
1 parent 77b7145 commit 874a574

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/rustc_target/src/spec/aarch64_apple_ios_macabi.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use super::apple_sdk_base::{opts, Arch};
2-
use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
2+
use crate::spec::{LinkerFlavor, Target, TargetOptions};
33

4-
pub fn target() -> TargetResult {
4+
pub fn target() -> Target {
55
let base = opts(Arch::Arm64_macabi);
6-
Ok(Target {
6+
Target {
77
llvm_target: "arm64-apple-ios14.2-macabi".to_string(),
88
target_endian: "little".to_string(),
99
target_pointer_width: "64".to_string(),
@@ -31,5 +31,5 @@ pub fn target() -> TargetResult {
3131
.to_string(),
3232
..base
3333
},
34-
})
34+
}
3535
}

0 commit comments

Comments
 (0)