about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJeremy Soller <jackpot51@gmail.com>2025-02-10 09:09:56 -0700
committerGitHub <noreply@github.com>2025-02-10 09:09:56 -0700
commitb8e135a79fa604e595b7d0419ff353700d87587e (patch)
tree4b603ffa903e6a8a81441b2caf9043ff2fcceea7
parentea54b5e2444cc1da08e2c4dfa720115cd1edb4a8 (diff)
downloadrust-b8e135a79fa604e595b7d0419ff353700d87587e.tar.gz
rust-b8e135a79fa604e595b7d0419ff353700d87587e.zip
Change CPU target back to pentiumpro
-rw-r--r--compiler/rustc_target/src/spec/targets/i586_unknown_redox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/i586_unknown_redox.rs b/compiler/rustc_target/src/spec/targets/i586_unknown_redox.rs
index 67dfc42103b..29ef8b883a1 100644
--- a/compiler/rustc_target/src/spec/targets/i586_unknown_redox.rs
+++ b/compiler/rustc_target/src/spec/targets/i586_unknown_redox.rs
@@ -2,7 +2,7 @@ use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target, base};
 
 pub(crate) fn target() -> Target {
     let mut base = base::redox::opts();
-    base.cpu = "pentium".into();
+    base.cpu = "pentiumpro".into();
     base.plt_by_default = false;
     base.max_atomic_width = Some(64);
     base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);