Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/rust
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9a08be78bd8bb72801c076a9cb9d1fae42b57865
Choose a base ref
..
head repository: rust-lang/rust
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 98dc98830c588b4228b63777ddbdb9fa8eccb97a
Choose a head ref
Showing with 0 additions and 2 deletions.
  1. +0 −1 compiler/rustc_target/src/spec/targets/i586_unknown_linux_gnu.rs
  2. +0 −1 compiler/rustc_target/src/spec/targets/i586_unknown_linux_musl.rs
Original file line number Diff line number Diff line change
@@ -2,7 +2,6 @@ use crate::spec::Target;

pub(crate) fn target() -> Target {
let mut base = super::i686_unknown_linux_gnu::target();
base.rustc_abi = None;
base.cpu = "pentium".into();
base.llvm_target = "i586-unknown-linux-gnu".into();
base
Original file line number Diff line number Diff line change
@@ -2,7 +2,6 @@ use crate::spec::Target;

pub(crate) fn target() -> Target {
let mut base = super::i686_unknown_linux_musl::target();
base.rustc_abi = None;
base.cpu = "pentium".into();
base.llvm_target = "i586-unknown-linux-musl".into();
// FIXME(compiler-team#422): musl targets should be dynamically linked by default.