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.

Signed-off-by: David Wood <david@davidtw.co>
This commit is contained in:
David Wood 2023-12-07 15:36:00 +00:00
parent 7df0c211ac
commit 399cd6cbfd
No known key found for this signature in database
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
}