|
73 | 73 | #![feature(const_ascii_ctype_on_intrinsics)] |
74 | 74 | #![feature(const_alloc_layout)] |
75 | 75 | #![feature(const_discriminant)] |
76 | | -#![cfg_attr(bootstrap, feature(const_if_match))] |
77 | | -#![cfg_attr(bootstrap, feature(const_loop))] |
78 | 76 | #![feature(const_checked_int_methods)] |
79 | 77 | #![feature(const_euclidean_int_methods)] |
80 | 78 | #![feature(const_overflowing_int_methods)] |
|
87 | 85 | #![feature(const_generics)] |
88 | 86 | #![feature(const_ptr_offset)] |
89 | 87 | #![feature(const_ptr_offset_from)] |
90 | | -#![cfg_attr(not(bootstrap), feature(const_raw_ptr_comparison))] |
| 88 | +#![feature(const_raw_ptr_comparison)] |
91 | 89 | #![feature(const_result)] |
92 | 90 | #![feature(const_slice_from_raw_parts)] |
93 | 91 | #![feature(const_slice_ptr_len)] |
|
119 | 117 | #![feature(staged_api)] |
120 | 118 | #![feature(std_internals)] |
121 | 119 | #![feature(stmt_expr_attributes)] |
122 | | -#![cfg_attr(bootstrap, feature(track_caller))] |
123 | 120 | #![feature(transparent_unions)] |
124 | 121 | #![feature(unboxed_closures)] |
125 | 122 | #![feature(unsized_locals)] |
126 | 123 | #![feature(untagged_unions)] |
127 | 124 | #![feature(unwind_attributes)] |
128 | | -#![cfg_attr(not(bootstrap), feature(variant_count))] |
| 125 | +#![feature(variant_count)] |
129 | 126 | #![feature(doc_alias)] |
130 | 127 | #![feature(mmx_target_feature)] |
131 | 128 | #![feature(tbm_target_feature)] |
|
140 | 137 | #![feature(rtm_target_feature)] |
141 | 138 | #![feature(f16c_target_feature)] |
142 | 139 | #![feature(hexagon_target_feature)] |
143 | | -#![cfg_attr(not(bootstrap), feature(const_fn_transmute))] |
| 140 | +#![feature(const_fn_transmute)] |
144 | 141 | #![feature(abi_unadjusted)] |
145 | 142 | #![feature(adx_target_feature)] |
146 | 143 | #![feature(maybe_uninit_slice)] |
@@ -291,7 +288,7 @@ pub mod primitive; |
291 | 288 | )] |
292 | 289 | // FIXME: This annotation should be moved into rust-lang/stdarch after clashing_extern_declarations is |
293 | 290 | // merged. It currently cannot because bootstrap fails as the lint hasn't been defined yet. |
294 | | -#[cfg_attr(not(bootstrap), allow(clashing_extern_declarations))] |
| 291 | +#[allow(clashing_extern_declarations)] |
295 | 292 | #[unstable(feature = "stdsimd", issue = "48556")] |
296 | 293 | mod core_arch; |
297 | 294 |
|
|
0 commit comments