Skip to content

Commit d801985

Browse files
committed
Fix comment
1 parent dae22a5 commit d801985

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

compiler/rustc_target/src/spec/base/apple/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ impl Arch {
5555
match self {
5656
Armv7k | Armv7s | Arm64 | Arm64e | Arm64_32 | I386 | I686 | X86_64 | X86_64h => "",
5757
X86_64_macabi | Arm64_macabi => "macabi",
58-
// x86_64-apple-ios is a simulator target, even though it isn't
59-
// declared that way in the target like the other ones...
6058
I386_sim | Arm64_sim | X86_64_sim => "sim",
6159
}
6260
}

compiler/rustc_target/src/spec/targets/i386_apple_ios.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ use crate::spec::base::apple::{ios_sim_llvm_target, opts, Arch};
22
use crate::spec::{Target, TargetOptions};
33

44
pub fn target() -> Target {
5+
// i386-apple-ios is a simulator target, even though it isn't declared
6+
// that way in the target name like the other ones...
57
let arch = Arch::I386_sim;
68
Target {
79
// Clang automatically chooses a more specific target based on

compiler/rustc_target/src/spec/targets/x86_64_apple_ios.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ use crate::spec::base::apple::{ios_sim_llvm_target, opts, Arch};
22
use crate::spec::{SanitizerSet, Target, TargetOptions};
33

44
pub fn target() -> Target {
5+
// x86_64-apple-ios is a simulator target, even though it isn't declared
6+
// that way in the target name like the other ones...
57
let arch = Arch::X86_64_sim;
68
let mut base = opts("ios", arch);
79
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::THREAD;

compiler/rustc_target/src/spec/targets/x86_64_apple_tvos.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ use crate::spec::base::apple::{opts, tvos_sim_llvm_target, Arch};
22
use crate::spec::{Target, TargetOptions};
33

44
pub fn target() -> Target {
5+
// x86_64-apple-tvos is a simulator target, even though it isn't declared
6+
// that way in the target name like the other ones...
57
let arch = Arch::X86_64_sim;
68
Target {
79
llvm_target: tvos_sim_llvm_target(arch).into(),

0 commit comments

Comments
 (0)