@@ -396,6 +396,8 @@ declare_features! (
396
396
( accepted, slice_patterns, "1.42.0" , Some ( 62254 ) ) ,
397
397
/// Allows use of `&foo[a..b]` as a slicing syntax.
398
398
( accepted, slicing_syntax, "1.0.0" , None ) ,
399
+ /// Allows use of `sse4a` target feature.
400
+ ( accepted, sse4a_target_feature, "CURRENT_RUSTC_VERSION" , Some ( 44839 ) ) ,
399
401
/// Allows elision of `'static` lifetimes in `static`s and `const`s.
400
402
( accepted, static_in_const, "1.17.0" , Some ( 35897 ) ) ,
401
403
/// Allows the definition recursive static items.
@@ -408,6 +410,8 @@ declare_features! (
408
410
( accepted, target_feature, "1.27.0" , None ) ,
409
411
/// Allows the use of `#[target_feature]` on safe functions.
410
412
( accepted, target_feature_11, "1.86.0" , Some ( 69098 ) ) ,
413
+ /// Allows use of `tbm` target feature.
414
+ ( accepted, tbm_target_feature, "CURRENT_RUSTC_VERSION" , Some ( 44839 ) ) ,
411
415
/// Allows `fn main()` with return types which implements `Termination` (RFC 1937).
412
416
( accepted, termination_trait, "1.26.0" , Some ( 43301 ) ) ,
413
417
/// Allows `#[test]` functions where the return type implements `Termination` (RFC 1937).
0 commit comments