File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2362,14 +2362,16 @@ fn from_target_feature(
2362
2362
Some ( sym:: mips_target_feature) => rust_features. mips_target_feature ,
2363
2363
Some ( sym:: avx512_target_feature) => rust_features. avx512_target_feature ,
2364
2364
Some ( sym:: mmx_target_feature) => rust_features. mmx_target_feature ,
2365
- Some ( sym:: sse4a_target_feature) => rust_features. sse4a_target_feature ,
2366
- Some ( sym:: tbm_target_feature) => rust_features. tbm_target_feature ,
2367
2365
Some ( sym:: wasm_target_feature) => rust_features. wasm_target_feature ,
2368
2366
Some ( sym:: cmpxchg16b_target_feature) => rust_features. cmpxchg16b_target_feature ,
2369
- Some ( sym:: adx_target_feature) => rust_features. adx_target_feature ,
2370
2367
Some ( sym:: movbe_target_feature) => rust_features. movbe_target_feature ,
2371
2368
Some ( sym:: rtm_target_feature) => rust_features. rtm_target_feature ,
2372
2369
Some ( sym:: f16c_target_feature) => rust_features. f16c_target_feature ,
2370
+ // These are stable:
2371
+ | Some ( sym:: sse4a_target_feature)
2372
+ | Some ( sym:: tbm_target_feature)
2373
+ | Some ( sym:: adx_target_feature)
2374
+ => true ,
2373
2375
Some ( name) => bug ! ( "unknown target feature gate {}" , name) ,
2374
2376
None => true ,
2375
2377
} ;
You can’t perform that action at this time.
0 commit comments