Skip to content

Commit

Permalink
rollup merge of rust-lang#27672: eefriedman/ios-target-cpu
Browse files Browse the repository at this point in the history
This matches the behavior of clang.

See also discussion on rust-lang#27307.
  • Loading branch information
alexcrichton committed Aug 12, 2015
2 parents d493659 + 155689b commit d4f2ef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc_back/target/apple_ios_base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ fn target_cpu(arch: Arch) -> String {
Armv7 => "cortex-a8", // iOS7 is supported on iPhone 4 and higher
Armv7s => "cortex-a9",
Arm64 => "cyclone",
I386 => "generic",
X86_64 => "x86-64",
I386 => "yonah",
X86_64 => "core2",
}.to_string()
}

Expand Down

0 comments on commit d4f2ef9

Please sign in to comment.