Use pentium4 for base CPU on i686-pc-windows-msvc

This is in line with other targets.

Closes #27646
This commit is contained in:
Elaine "See More" Nemo 2015-08-10 17:53:00 -04:00
parent 3d69bec881
commit ac25b449e2
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(),