Skip to content

Commit 4ed68f0

Browse files
committed
Remove redundant -d32 in target specs
1 parent 7d0300b commit 4ed68f0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

compiler/rustc_target/src/spec/targets/arm_unknown_linux_gnueabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub(crate) fn target() -> Target {
1515
options: TargetOptions {
1616
abi: Abi::EabiHf,
1717
llvm_floatabi: Some(FloatAbi::Hard),
18-
features: "+strict-align,+v6,+vfp2,-d32".into(),
18+
features: "+strict-align,+v6,+vfp2".into(),
1919
max_atomic_width: Some(64),
2020
mcount: "\u{1}__gnu_mcount_nc".into(),
2121
llvm_mcount_intrinsic: Some("llvm.arm.gnu.eabi.mcount".into()),

compiler/rustc_target/src/spec/targets/arm_unknown_linux_musleabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub(crate) fn target() -> Target {
1717
llvm_floatabi: Some(FloatAbi::Hard),
1818
// Most of these settings are copied from the arm_unknown_linux_gnueabihf
1919
// target.
20-
features: "+strict-align,+v6,+vfp2,-d32".into(),
20+
features: "+strict-align,+v6,+vfp2".into(),
2121
max_atomic_width: Some(64),
2222
mcount: "\u{1}mcount".into(),
2323
// FIXME(compiler-team#422): musl targets should be dynamically linked by default.

compiler/rustc_target/src/spec/targets/armv6_unknown_freebsd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub(crate) fn target() -> Target {
1515
options: TargetOptions {
1616
abi: Abi::EabiHf,
1717
llvm_floatabi: Some(FloatAbi::Hard),
18-
features: "+v6,+vfp2,-d32".into(),
18+
features: "+v6,+vfp2".into(),
1919
max_atomic_width: Some(64),
2020
mcount: "\u{1}__gnu_mcount_nc".into(),
2121
llvm_mcount_intrinsic: Some("llvm.arm.gnu.eabi.mcount".into()),

compiler/rustc_target/src/spec/targets/armv6_unknown_netbsd_eabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub(crate) fn target() -> Target {
1515
options: TargetOptions {
1616
abi: Abi::EabiHf,
1717
llvm_floatabi: Some(FloatAbi::Hard),
18-
features: "+v6,+vfp2,-d32".into(),
18+
features: "+v6,+vfp2".into(),
1919
max_atomic_width: Some(64),
2020
mcount: "__mcount".into(),
2121
..base::netbsd::opts()

0 commit comments

Comments
 (0)