File tree 3 files changed +2
-6
lines changed
3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -1593,15 +1593,15 @@ extern "rust-intrinsic" {
1593
1593
/// Safe wrappers for this intrinsic are available on the integer
1594
1594
/// primitives via the `checked_div` method. For example,
1595
1595
/// [`u32::checked_div`]
1596
- #[ rustc_const_unstable ( feature = "const_int_unchecked_arith" , issue = "none " ) ]
1596
+ #[ rustc_const_stable ( feature = "const_int_unchecked_arith" , since = "1.51.0 " ) ]
1597
1597
pub fn unchecked_div < T : Copy > ( x : T , y : T ) -> T ;
1598
1598
/// Returns the remainder of an unchecked division, resulting in
1599
1599
/// undefined behavior when `y == 0` or `x == T::MIN && y == -1`
1600
1600
///
1601
1601
/// Safe wrappers for this intrinsic are available on the integer
1602
1602
/// primitives via the `checked_rem` method. For example,
1603
1603
/// [`u32::checked_rem`]
1604
- #[ rustc_const_unstable ( feature = "const_int_unchecked_arith" , issue = "none " ) ]
1604
+ #[ rustc_const_stable ( feature = "const_int_unchecked_arith" , since = "1.51.0 " ) ]
1605
1605
pub fn unchecked_rem < T : Copy > ( x : T , y : T ) -> T ;
1606
1606
1607
1607
/// Performs an unchecked left shift, resulting in undefined behavior when
Original file line number Diff line number Diff line change @@ -514,7 +514,6 @@ macro_rules! int_impl {
514
514
/// ```
515
515
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
516
516
#[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51.0" ) ]
517
- #[ rustc_allow_const_fn_unstable( const_int_unchecked_arith) ]
518
517
#[ must_use = "this returns the result of the operation, \
519
518
without modifying the original"]
520
519
#[ inline]
@@ -567,7 +566,6 @@ macro_rules! int_impl {
567
566
/// ```
568
567
#[ stable( feature = "wrapping" , since = "1.7.0" ) ]
569
568
#[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51.0" ) ]
570
- #[ rustc_allow_const_fn_unstable( const_int_unchecked_arith) ]
571
569
#[ must_use = "this returns the result of the operation, \
572
570
without modifying the original"]
573
571
#[ inline]
Original file line number Diff line number Diff line change @@ -523,7 +523,6 @@ macro_rules! uint_impl {
523
523
/// ```
524
524
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
525
525
#[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51.0" ) ]
526
- #[ rustc_allow_const_fn_unstable( const_int_unchecked_arith) ]
527
526
#[ must_use = "this returns the result of the operation, \
528
527
without modifying the original"]
529
528
#[ inline]
@@ -575,7 +574,6 @@ macro_rules! uint_impl {
575
574
/// ```
576
575
#[ stable( feature = "wrapping" , since = "1.7.0" ) ]
577
576
#[ rustc_const_stable( feature = "const_checked_int_methods" , since = "1.51.0" ) ]
578
- #[ rustc_allow_const_fn_unstable( const_int_unchecked_arith) ]
579
577
#[ must_use = "this returns the result of the operation, \
580
578
without modifying the original"]
581
579
#[ inline]
You can’t perform that action at this time.
0 commit comments