blob: b699a7af17749521e2bf1a503ed5c95239754b1a [file] [log] [blame]
use crate::spec::Target;
pub fn target() -> Target {
let mut base = super::i686_unknown_linux_gnu::target();
base.cpu = "pentium".into();
base.llvm_target = "i586-unknown-linux-gnu".into();
base
}