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)
This commit is contained in:
Matthias Krüger 2023-12-07 21:38:09 +01:00 committed by GitHub
commit 0be2196c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 16 deletions

View File

@ -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
}

View File

@ -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
}