Skip to content

Commit fbe6442

Browse files
authored
Rollup merge of rust-lang#93745 - tarcieri:stabilize-adx, r=cjgillot
Stabilize ADX target feature This is a continuation of rust-lang#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 rust-lang#44839 - tracking issue for target feature
2 parents 8a34aaf + e9a43b6 commit fbe6442

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)