Skip to content

Commit ac25b44

Browse files
committed
Use pentium4 for base CPU on i686-pc-windows-msvc
This is in line with other targets. Closes #27646
1 parent 3d69bec commit ac25b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_back/target/i686_pc_windows_msvc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use target::Target;
1212

1313
pub fn target() -> Target {
1414
let mut base = super::windows_msvc_base::opts();
15-
base.cpu = "i686".to_string();
15+
base.cpu = "pentium4".to_string();
1616

1717
Target {
1818
llvm_target: "i686-pc-windows-msvc".to_string(),

0 commit comments

Comments
 (0)