]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/i586_pc_windows_msvc.rs
Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup
[rust.git] / compiler / rustc_target / src / spec / i586_pc_windows_msvc.rs
1 use crate::spec::Target;
2
3 pub fn target() -> Target {
4     let mut base = super::i686_pc_windows_msvc::target();
5     base.cpu = "pentium".to_string();
6     base.llvm_target = "i586-pc-windows-msvc".to_string();
7     base
8 }