File tree 3 files changed +11
-1
lines changed
crates/std_detect/src/detect
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -104,15 +104,20 @@ features! {
104
104
/// RV128I Base Integer Instruction Set
105
105
106
106
@FEATURE : #[ unstable( feature = "stdarch_riscv_feature_detection" , issue = "111192" ) ] zicsr: "zicsr" ;
107
+ without cfg check: true ;
107
108
/// "Zicsr" Extension for Control and Status Register (CSR) Instructions
108
109
@FEATURE : #[ unstable( feature = "stdarch_riscv_feature_detection" , issue = "111192" ) ] zicntr: "zicntr" ;
110
+ without cfg check: true ;
109
111
/// "Zicntr" Extension for Base Counters and Timers
110
112
@FEATURE : #[ unstable( feature = "stdarch_riscv_feature_detection" , issue = "111192" ) ] zihpm: "zihpm" ;
113
+ without cfg check: true ;
111
114
/// "Zihpm" Extension for Hardware Performance Counters
112
115
113
116
@FEATURE : #[ unstable( feature = "stdarch_riscv_feature_detection" , issue = "111192" ) ] zifencei: "zifencei" ;
117
+ without cfg check: true ;
114
118
/// "Zifencei" Extension for Instruction-Fetch Fence
115
119
@FEATURE : #[ unstable( feature = "stdarch_riscv_feature_detection" , issue = "111192" ) ] zihintpause: "zihintpause" ;
120
+ without cfg check: true ;
116
121
/// "Zihintpause" Extension for Pause Hint
117
122
118
123
@FEATURE : #[ stable( feature = "riscv_ratified" , since = "1.78.0" ) ] m: "m" ;
Original file line number Diff line number Diff line change @@ -224,14 +224,19 @@ features! {
224
224
@FEATURE : #[ unstable( feature = "x86_amx_intrinsics" , issue = "126622" ) ] amx_complex: "amx-complex" ;
225
225
/// AMX-COMPLEX (Complex number Operations)
226
226
@FEATURE : #[ unstable( feature = "x86_amx_intrinsics" , issue = "126622" ) ] amx_avx512: "amx-avx512" ;
227
+ without cfg check: true ;
227
228
/// AMX-AVX512 (AVX512 operations extended to matrices)
228
229
@FEATURE : #[ unstable( feature = "x86_amx_intrinsics" , issue = "126622" ) ] amx_fp8: "amx-fp8" ;
230
+ without cfg check: true ;
229
231
/// AMX-FP8 (Float8 Operations)
230
232
@FEATURE : #[ unstable( feature = "x86_amx_intrinsics" , issue = "126622" ) ] amx_movrs: "amx-movrs" ;
233
+ without cfg check: true ;
231
234
/// AMX-MOVRS (Matrix MOVERS operations)
232
235
@FEATURE : #[ unstable( feature = "x86_amx_intrinsics" , issue = "126622" ) ] amx_tf32: "amx-tf32" ;
236
+ without cfg check: true ;
233
237
/// AMX-TF32 (TensorFloat32 Operations)
234
238
@FEATURE : #[ unstable( feature = "x86_amx_intrinsics" , issue = "126622" ) ] amx_transpose: "amx-transpose" ;
239
+ without cfg check: true ;
235
240
/// AMX-TRANSPOSE (Matrix Transpose Operations)
236
241
@FEATURE : #[ stable( feature = "simd_x86" , since = "1.27.0" ) ] f16c: "f16c" ;
237
242
/// F16C (Conversions between IEEE-754 `binary16` and `binary32` formats)
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ macro_rules! check_cfg_feature {
23
23
$( cfg!( target_feature = $target_feature_lit) ; ) *
24
24
} ;
25
25
( $feature: tt, $feature_lit: tt, without cfg check: $feature_cfg_check: literal) => {
26
- #[ expect ( unexpected_cfgs, reason = $feature_lit) ]
26
+ #[ allow ( unexpected_cfgs, reason = $feature_lit) ]
27
27
{ cfg!( target_feature = $feature_lit) }
28
28
} ;
29
29
}
You can’t perform that action at this time.
0 commit comments