@@ -1509,39 +1509,39 @@ impl f32 {
1509
1509
1510
1510
/// Float addition that allows optimizations based on algebraic rules.
1511
1511
#[ must_use = "method returns a new number and does not mutate the original value" ]
1512
- #[ unstable( feature = "float_algebraic" , issue = "21690 " ) ]
1512
+ #[ unstable( feature = "float_algebraic" , issue = "136469 " ) ]
1513
1513
#[ inline]
1514
1514
pub fn add_algebraic ( self , rhs : f32 ) -> f32 {
1515
1515
intrinsics:: fadd_algebraic ( self , rhs)
1516
1516
}
1517
1517
1518
1518
/// Float subtraction that allows optimizations based on algebraic rules.
1519
1519
#[ must_use = "method returns a new number and does not mutate the original value" ]
1520
- #[ unstable( feature = "float_algebraic" , issue = "21690 " ) ]
1520
+ #[ unstable( feature = "float_algebraic" , issue = "136469 " ) ]
1521
1521
#[ inline]
1522
1522
pub fn sub_algebraic ( self , rhs : f32 ) -> f32 {
1523
1523
intrinsics:: fsub_algebraic ( self , rhs)
1524
1524
}
1525
1525
1526
1526
/// Float multiplication that allows optimizations based on algebraic rules.
1527
1527
#[ must_use = "method returns a new number and does not mutate the original value" ]
1528
- #[ unstable( feature = "float_algebraic" , issue = "21690 " ) ]
1528
+ #[ unstable( feature = "float_algebraic" , issue = "136469 " ) ]
1529
1529
#[ inline]
1530
1530
pub fn mul_algebraic ( self , rhs : f32 ) -> f32 {
1531
1531
intrinsics:: fmul_algebraic ( self , rhs)
1532
1532
}
1533
1533
1534
1534
/// Float division that allows optimizations based on algebraic rules.
1535
1535
#[ must_use = "method returns a new number and does not mutate the original value" ]
1536
- #[ unstable( feature = "float_algebraic" , issue = "21690 " ) ]
1536
+ #[ unstable( feature = "float_algebraic" , issue = "136469 " ) ]
1537
1537
#[ inline]
1538
1538
pub fn div_algebraic ( self , rhs : f32 ) -> f32 {
1539
1539
intrinsics:: fdiv_algebraic ( self , rhs)
1540
1540
}
1541
1541
1542
1542
/// Float remainder that allows optimizations based on algebraic rules.
1543
1543
#[ must_use = "method returns a new number and does not mutate the original value" ]
1544
- #[ unstable( feature = "float_algebraic" , issue = "21690 " ) ]
1544
+ #[ unstable( feature = "float_algebraic" , issue = "136469 " ) ]
1545
1545
#[ inline]
1546
1546
pub fn rem_algebraic ( self , rhs : f32 ) -> f32 {
1547
1547
intrinsics:: frem_algebraic ( self , rhs)
0 commit comments