Skip to content

Commit 3d9aff8

Browse files
committed
Auto merge of rust-lang#94040 - Mark-Simulacrum:destabilize-load-store, r=Amanieu
Destabilize cfg(target_has_atomic_load_store = ...) This was not intended to be stabilized yet. This keeps the cfg_target_has_atomic feature gate name since compiler-builtins otherwise depends on it and I'd rather not try to manage a bump across a crates.io published repository given the time-sensitivity here (we need to land this quickly to avoid a beta backport). Closes rust-lang#32976 r? `@Amanieu`
2 parents f38aeb4 + 1c33e7f commit 3d9aff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
#![feature(allow_internal_unstable)]
156156
#![feature(associated_type_bounds)]
157157
#![feature(auto_traits)]
158-
#![cfg_attr(bootstrap, feature(cfg_target_has_atomic))]
158+
#![feature(cfg_target_has_atomic)]
159159
#![cfg_attr(not(bootstrap), feature(cfg_target_has_atomic_equal_alignment))]
160160
#![feature(const_fn_floating_point_arithmetic)]
161161
#![feature(const_fn_fn_ptr_basics)]

0 commit comments

Comments
 (0)