|
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)] |
|
121 | 119 | #![feature(staged_api)] |
122 | 120 | #![feature(std_internals)] |
123 | 121 | #![feature(stmt_expr_attributes)] |
124 | | -#![cfg_attr(bootstrap, feature(track_caller))] |
125 | 122 | #![feature(transparent_unions)] |
126 | 123 | #![feature(unboxed_closures)] |
127 | 124 | #![feature(unsized_locals)] |
128 | 125 | #![feature(untagged_unions)] |
129 | 126 | #![feature(unwind_attributes)] |
130 | | -#![cfg_attr(not(bootstrap), feature(variant_count))] |
| 127 | +#![feature(variant_count)] |
131 | 128 | #![feature(doc_alias)] |
132 | 129 | #![feature(mmx_target_feature)] |
133 | 130 | #![feature(tbm_target_feature)] |
|
142 | 139 | #![feature(rtm_target_feature)] |
143 | 140 | #![feature(f16c_target_feature)] |
144 | 141 | #![feature(hexagon_target_feature)] |
145 | | -#![cfg_attr(not(bootstrap), feature(const_fn_transmute))] |
| 142 | +#![feature(const_fn_transmute)] |
146 | 143 | #![feature(abi_unadjusted)] |
147 | 144 | #![feature(adx_target_feature)] |
148 | 145 | #![feature(maybe_uninit_slice)] |
@@ -293,7 +290,7 @@ pub mod primitive; |
293 | 290 | )] |
294 | 291 | // FIXME: This annotation should be moved into rust-lang/stdarch after clashing_extern_declarations is |
295 | 292 | // merged. It currently cannot because bootstrap fails as the lint hasn't been defined yet. |
296 | | -#[cfg_attr(not(bootstrap), allow(clashing_extern_declarations))] |
| 293 | +#[allow(clashing_extern_declarations)] |
297 | 294 | #[unstable(feature = "stdsimd", issue = "48556")] |
298 | 295 | mod core_arch; |
299 | 296 |
|
|
0 commit comments