diff options
| author | Jubilee <workingjubilee@gmail.com> | 2024-10-04 14:11:36 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-04 14:11:36 -0700 |
| commit | 1462815098cfadc97bf5d8ec2bf165321b5c75ff (patch) | |
| tree | df2443127ad52d94b466f57439d525d9963664f9 /compiler/rustc_target/src | |
| parent | ff57e0b24e959a08b3f67283b91c4e9e42ee89c8 (diff) | |
| parent | f51d8e3276b783a51b04139bf8e7bff099fb3769 (diff) | |
| download | rust-1462815098cfadc97bf5d8ec2bf165321b5c75ff.tar.gz rust-1462815098cfadc97bf5d8ec2bf165321b5c75ff.zip | |
Rollup merge of #131174 - madsmtm:target-info-sparc-abi, r=pnkfelix
Fix `target_abi` in `sparc-unknown-none-elf` This was previously set to `target_abi = "elf"`, but `elf` is not used elsewhere as a target ABI (even though there's many targets that have it in their name), so I've removed it. CC target maintainer ``@jonathanpallant,`` what do you think about this? ``@rustbot`` label O-SPARC
Diffstat (limited to 'compiler/rustc_target/src')
| -rw-r--r-- | compiler/rustc_target/src/spec/targets/sparc_unknown_none_elf.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/sparc_unknown_none_elf.rs b/compiler/rustc_target/src/spec/targets/sparc_unknown_none_elf.rs index 0cd4faefd6b..0157d03f854 100644 --- a/compiler/rustc_target/src/spec/targets/sparc_unknown_none_elf.rs +++ b/compiler/rustc_target/src/spec/targets/sparc_unknown_none_elf.rs @@ -7,7 +7,6 @@ pub(crate) fn target() -> Target { linker: Some("sparc-elf-gcc".into()), endian: Endian::Big, cpu: "v7".into(), - abi: "elf".into(), max_atomic_width: Some(32), atomic_cas: true, panic_strategy: PanicStrategy::Abort, |
