rustc_target/spec/targets/
i586_pc_windows_msvc.rs

1use crate::spec::Target;
2
3pub(crate) fn target() -> Target {
4    let mut base = super::i686_pc_windows_msvc::target();
5    base.rustc_abi = None; // overwrite the SSE2 ABI set by the base target
6    base.cpu = "pentium".into();
7    base.llvm_target = "i586-pc-windows-msvc".into();
8    base
9}