Rollup merge of #27647 - rust-lang:issue-27646, r=alexcrichton

This is in line with other targets.

Closes #27646
This commit is contained in:
Manish Goregaokar 2015-08-11 13:26:47 +05:30
commit 306d2ca49a
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ use target::Target;
pub fn target() -> Target {
let mut base = super::windows_msvc_base::opts();
base.cpu = "i686".to_string();
base.cpu = "pentium4".to_string();
Target {
llvm_target: "i686-pc-windows-msvc".to_string(),