@@ -20,7 +20,7 @@ macro_rules! bt {
20
20
/// Returns the bit in position `b` of the memory addressed by `p`.
21
21
#[ inline]
22
22
#[ cfg_attr( test, assert_instr( bt) ) ]
23
- #[ stable( feature = "simd_x86_bittest" , since = "1.54 .0" ) ]
23
+ #[ stable( feature = "simd_x86_bittest" , since = "1.55 .0" ) ]
24
24
pub unsafe fn _bittest64 ( p : * const i64 , b : i64 ) -> u8 {
25
25
let r: u8 ;
26
26
asm ! (
@@ -37,7 +37,7 @@ pub unsafe fn _bittest64(p: *const i64, b: i64) -> u8 {
37
37
/// Returns the bit in position `b` of the memory addressed by `p`, then sets the bit to `1`.
38
38
#[ inline]
39
39
#[ cfg_attr( test, assert_instr( bts) ) ]
40
- #[ stable( feature = "simd_x86_bittest" , since = "1.54 .0" ) ]
40
+ #[ stable( feature = "simd_x86_bittest" , since = "1.55 .0" ) ]
41
41
pub unsafe fn _bittestandset64 ( p : * mut i64 , b : i64 ) -> u8 {
42
42
let r: u8 ;
43
43
asm ! (
@@ -54,7 +54,7 @@ pub unsafe fn _bittestandset64(p: *mut i64, b: i64) -> u8 {
54
54
/// Returns the bit in position `b` of the memory addressed by `p`, then resets that bit to `0`.
55
55
#[ inline]
56
56
#[ cfg_attr( test, assert_instr( btr) ) ]
57
- #[ stable( feature = "simd_x86_bittest" , since = "1.54 .0" ) ]
57
+ #[ stable( feature = "simd_x86_bittest" , since = "1.55 .0" ) ]
58
58
pub unsafe fn _bittestandreset64 ( p : * mut i64 , b : i64 ) -> u8 {
59
59
let r: u8 ;
60
60
asm ! (
@@ -71,7 +71,7 @@ pub unsafe fn _bittestandreset64(p: *mut i64, b: i64) -> u8 {
71
71
/// Returns the bit in position `b` of the memory addressed by `p`, then inverts that bit.
72
72
#[ inline]
73
73
#[ cfg_attr( test, assert_instr( btc) ) ]
74
- #[ stable( feature = "simd_x86_bittest" , since = "1.54 .0" ) ]
74
+ #[ stable( feature = "simd_x86_bittest" , since = "1.55 .0" ) ]
75
75
pub unsafe fn _bittestandcomplement64 ( p : * mut i64 , b : i64 ) -> u8 {
76
76
let r: u8 ;
77
77
asm ! (
0 commit comments