about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-12-07 21:38:09 +0100
committerGitHub <noreply@github.com>2023-12-07 21:38:09 +0100
commit0be2196c45002e8f3bfdaac3dc0a8b31d723552f (patch)
tree8992e28cfcf1e21c5098044dbf376705716629e0
parent861cb32546d1b010976f39091d124bbedf17226d (diff)
parent399cd6cbfd3a797b1a48d122db57501c5926bd10 (diff)
downloadrust-0be2196c45002e8f3bfdaac3dc0a8b31d723552f.tar.gz
rust-0be2196c45002e8f3bfdaac3dc0a8b31d723552f.zip
Rollup merge of #118712 - davidtwco:targets-remove-i386-i486, r=compiler-errors
targets: remove not-added {i386,i486}-unknown-linux-gnu

These files were added to the repository but never wired up so they could be used - and that was a few years ago without anyone noticing - so let's remove these, they can be re-added if someone wants them.

cc #80662
r? ```@pnkfelix``` (familiar with the tier policy and Wesley is on vacation)
-rw-r--r--compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs8
-rw-r--r--compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs8
2 files changed, 0 insertions, 16 deletions
diff --git a/compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs
deleted file mode 100644
index 801a8893399..00000000000
--- a/compiler/rustc_target/src/spec/targets/i386_unknown_linux_gnu.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-use crate::spec::Target;
-
-pub fn target() -> Target {
-    let mut base = super::i686_unknown_linux_gnu::target();
-    base.cpu = "i386".into();
-    base.llvm_target = "i386-unknown-linux-gnu".into();
-    base
-}
diff --git a/compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs
deleted file mode 100644
index a11fbecc3c3..00000000000
--- a/compiler/rustc_target/src/spec/targets/i486_unknown_linux_gnu.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-use crate::spec::Target;
-
-pub fn target() -> Target {
-    let mut base = super::i686_unknown_linux_gnu::target();
-    base.cpu = "i486".into();
-    base.llvm_target = "i486-unknown-linux-gnu".into();
-    base
-}