Skip to content

Commit 49d4823

Browse files
committed
Stabilize cfg_target_has_atomic
Closes #32976
1 parent b7cd0f7 commit 49d4823

13 files changed

+84
-402
lines changed

compiler/rustc_feature/src/accepted.rs

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ declare_features! (
7272
(accepted, cfg_doctest, "1.40.0", Some(62210), None),
7373
/// Allows `cfg(target_feature = "...")`.
7474
(accepted, cfg_target_feature, "1.27.0", Some(29717), None),
75+
/// Allows `cfg(target_has_atomic = "...")`.
76+
(accepted, cfg_target_has_atomic, "1.60.0", Some(32976), None),
7577
/// Allows `cfg(target_vendor = "...")`.
7678
(accepted, cfg_target_vendor, "1.33.0", Some(29718), None),
7779
/// Allows implementing `Clone` for closures where possible (RFC 2132).

compiler/rustc_feature/src/active.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ declare_features! (
309309
(active, cfg_sanitize, "1.41.0", Some(39699), None),
310310
/// Allows `cfg(target_abi = "...")`.
311311
(active, cfg_target_abi, "1.55.0", Some(80970), None),
312-
/// Allows `cfg(target_has_atomic = "...")`.
313-
(active, cfg_target_has_atomic, "1.9.0", Some(32976), None),
312+
/// Allows `cfg(target_has_atomic_equal_alignment = "...")`.
313+
(active, cfg_target_has_atomic_equal_alignment, "1.60.0", Some(93822), None),
314314
/// Allows `cfg(target_thread_local)`.
315315
(active, cfg_target_thread_local, "1.7.0", Some(29594), None),
316316
/// Allow conditional compilation depending on rust version

compiler/rustc_feature/src/builtin_attrs.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,10 @@ const GATED_CFGS: &[GatedCfg] = &[
2626
// (name in cfg, feature, function to check if the feature is enabled)
2727
(sym::target_abi, sym::cfg_target_abi, cfg_fn!(cfg_target_abi)),
2828
(sym::target_thread_local, sym::cfg_target_thread_local, cfg_fn!(cfg_target_thread_local)),
29-
(sym::target_has_atomic, sym::cfg_target_has_atomic, cfg_fn!(cfg_target_has_atomic)),
30-
(sym::target_has_atomic_load_store, sym::cfg_target_has_atomic, cfg_fn!(cfg_target_has_atomic)),
3129
(
3230
sym::target_has_atomic_equal_alignment,
33-
sym::cfg_target_has_atomic,
34-
cfg_fn!(cfg_target_has_atomic),
31+
sym::cfg_target_has_atomic_equal_alignment,
32+
cfg_fn!(cfg_target_has_atomic_equal_alignment),
3533
),
3634
(sym::sanitize, sym::cfg_sanitize, cfg_fn!(cfg_sanitize)),
3735
(sym::version, sym::cfg_version, cfg_fn!(cfg_version)),

compiler/rustc_span/src/symbol.rs

+1
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ symbols! {
421421
cfg_target_abi,
422422
cfg_target_feature,
423423
cfg_target_has_atomic,
424+
cfg_target_has_atomic_equal_alignment,
424425
cfg_target_thread_local,
425426
cfg_target_vendor,
426427
cfg_version,

library/alloc/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
#![feature(associated_type_bounds)]
141141
#![feature(box_syntax)]
142142
#![feature(cfg_sanitize)]
143-
#![feature(cfg_target_has_atomic)]
143+
#![cfg_attr(bootstrap, feature(cfg_target_has_atomic))]
144144
#![feature(const_deref)]
145145
#![feature(const_fn_trait_bound)]
146146
#![feature(const_mut_refs)]

library/core/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,8 @@
155155
#![feature(allow_internal_unstable)]
156156
#![feature(associated_type_bounds)]
157157
#![feature(auto_traits)]
158-
#![feature(cfg_target_has_atomic)]
158+
#![cfg_attr(bootstrap, feature(cfg_target_has_atomic))]
159+
#![cfg_attr(not(bootstrap), feature(cfg_target_has_atomic_equal_alignment))]
159160
#![feature(const_fn_floating_point_arithmetic)]
160161
#![feature(const_fn_fn_ptr_basics)]
161162
#![feature(const_fn_trait_bound)]

library/core/tests/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#![feature(box_syntax)]
88
#![feature(cell_update)]
99
#![feature(cfg_panic)]
10-
#![feature(cfg_target_has_atomic)]
10+
#![cfg_attr(bootstrap, feature(cfg_target_has_atomic))]
1111
#![feature(const_assume)]
1212
#![feature(const_black_box)]
1313
#![feature(const_bool_to_option)]

library/std/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@
242242
#![feature(c_variadic)]
243243
#![feature(cfg_accessible)]
244244
#![feature(cfg_eval)]
245-
#![feature(cfg_target_has_atomic)]
245+
#![cfg_attr(bootstrap, feature(cfg_target_has_atomic))]
246246
#![feature(cfg_target_thread_local)]
247247
#![feature(char_error_internals)]
248248
#![feature(char_internals)]

src/test/run-make-fulldeps/atomic-lock-free/atomic_lock_free.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(cfg_target_has_atomic, no_core, intrinsics, lang_items)]
1+
#![feature(no_core, intrinsics, lang_items)]
22
#![crate_type="rlib"]
33
#![no_core]
44

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
fn main() {
2+
cfg!(target_has_atomic_equal_alignment = "8");
3+
//~^ ERROR `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
4+
cfg!(target_has_atomic_equal_alignment = "16");
5+
//~^ ERROR `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
6+
cfg!(target_has_atomic_equal_alignment = "32");
7+
//~^ ERROR `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
8+
cfg!(target_has_atomic_equal_alignment = "64");
9+
//~^ ERROR `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
10+
cfg!(target_has_atomic_equal_alignment = "128");
11+
//~^ ERROR `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
12+
cfg!(target_has_atomic_equal_alignment = "ptr");
13+
//~^ ERROR `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
2+
--> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:2:10
3+
|
4+
LL | cfg!(target_has_atomic_equal_alignment = "8");
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
8+
= help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
9+
10+
error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
11+
--> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:4:10
12+
|
13+
LL | cfg!(target_has_atomic_equal_alignment = "16");
14+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15+
|
16+
= note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
17+
= help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
18+
19+
error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
20+
--> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:6:10
21+
|
22+
LL | cfg!(target_has_atomic_equal_alignment = "32");
23+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24+
|
25+
= note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
26+
= help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
27+
28+
error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
29+
--> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:8:10
30+
|
31+
LL | cfg!(target_has_atomic_equal_alignment = "64");
32+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33+
|
34+
= note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
35+
= help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
36+
37+
error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
38+
--> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:10:10
39+
|
40+
LL | cfg!(target_has_atomic_equal_alignment = "128");
41+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42+
|
43+
= note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
44+
= help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
45+
46+
error[E0658]: `cfg(target_has_atomic_equal_alignment)` is experimental and subject to change
47+
--> $DIR/feature-gate-cfg-target-has-atomic-equal-alignment.rs:12:10
48+
|
49+
LL | cfg!(target_has_atomic_equal_alignment = "ptr");
50+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
51+
|
52+
= note: see issue #93822 <https://github.com/rust-lang/rust/issues/93822> for more information
53+
= help: add `#![feature(cfg_target_has_atomic_equal_alignment)]` to the crate attributes to enable
54+
55+
error: aborting due to 6 previous errors
56+
57+
For more information about this error, try `rustc --explain E0658`.

src/test/ui/feature-gates/feature-gate-cfg-target-has-atomic.rs

-118
This file was deleted.

0 commit comments

Comments
 (0)