blob: 4a7779a6df0836b80fb3646b5b83915ac739a625 [file] [log] [blame]
use crate::spec::Target;
pub fn target() -> Target {
let mut base = super::i686_pc_windows_msvc::target();
base.cpu = "pentium".to_string();
base.llvm_target = "i586-pc-windows-msvc".to_string();
base
}