Skip to content

Commit e526baf

Browse files
authored
Rollup merge of #93745 - tarcieri:stabilize-adx, r=cjgillot
Stabilize ADX target feature This is a continuation of #60109, which noted that while the ADX intrinsics were stabilized, the corresponding target feature never was. This PR follows the same general structure and stabilizes the ADX target feature. See also #44839 - tracking issue for target feature
2 parents 6cdb5d9 + 07f5749 commit e526baf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@
207207
//
208208
// Target features:
209209
#![cfg_attr(bootstrap, feature(aarch64_target_feature))]
210-
#![feature(adx_target_feature)]
211210
#![feature(arm_target_feature)]
212211
#![feature(avx512_target_feature)]
213212
#![feature(cmpxchg16b_target_feature)]
@@ -219,6 +218,7 @@
219218
#![feature(sse4a_target_feature)]
220219
#![feature(tbm_target_feature)]
221220
#![feature(wasm_target_feature)]
221+
#![cfg_attr(bootstrap, feature(adx_target_feature))]
222222

223223
// allow using `core::` in intra-doc links
224224
#[allow(unused_extern_crates)]

0 commit comments

Comments
 (0)