]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/i586_pc_windows_msvc.rs
Auto merge of #68414 - michaelwoerister:share-drop-glue, r=alexcrichton
[rust.git] / src / librustc_target / spec / i586_pc_windows_msvc.rs
1 use crate::spec::TargetResult;
2
3 pub fn target() -> TargetResult {
4     let mut base = super::i686_pc_windows_msvc::target()?;
5     base.options.cpu = "pentium".to_string();
6     base.llvm_target = "i586-pc-windows-msvc".to_string();
7     Ok(base)
8 }