Skip to content

Commit 365ea80

Browse files
committed
Set max_atomic_width to 0 because there's no atomic instructions on ARMv5
1 parent 8016dc3 commit 365ea80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc_back/target/armv5te_unknown_linux_gnueabi.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ pub fn target() -> TargetResult {
2424

2525
options: TargetOptions {
2626
features: "+soft-float".to_string(),
27-
max_atomic_width: Some(64),
27+
// No atomic instructions on ARMv5
28+
max_atomic_width: Some(0),
2829
abi_blacklist: super::arm_base::abi_blacklist(),
2930
.. base
3031
}

0 commit comments

Comments
 (0)