Skip to content

Commit 4b0f484

Browse files
committed
Link to tracking issue.
1 parent 3b22215 commit 4b0f484

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

library/core/src/num/f32.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,39 +1509,39 @@ impl f32 {
15091509

15101510
/// Float addition that allows optimizations based on algebraic rules.
15111511
#[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")]
15131513
#[inline]
15141514
pub fn add_algebraic(self, rhs: f32) -> f32 {
15151515
intrinsics::fadd_algebraic(self, rhs)
15161516
}
15171517

15181518
/// Float subtraction that allows optimizations based on algebraic rules.
15191519
#[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")]
15211521
#[inline]
15221522
pub fn sub_algebraic(self, rhs: f32) -> f32 {
15231523
intrinsics::fsub_algebraic(self, rhs)
15241524
}
15251525

15261526
/// Float multiplication that allows optimizations based on algebraic rules.
15271527
#[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")]
15291529
#[inline]
15301530
pub fn mul_algebraic(self, rhs: f32) -> f32 {
15311531
intrinsics::fmul_algebraic(self, rhs)
15321532
}
15331533

15341534
/// Float division that allows optimizations based on algebraic rules.
15351535
#[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")]
15371537
#[inline]
15381538
pub fn div_algebraic(self, rhs: f32) -> f32 {
15391539
intrinsics::fdiv_algebraic(self, rhs)
15401540
}
15411541

15421542
/// Float remainder that allows optimizations based on algebraic rules.
15431543
#[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")]
15451545
#[inline]
15461546
pub fn rem_algebraic(self, rhs: f32) -> f32 {
15471547
intrinsics::frem_algebraic(self, rhs)

library/core/src/num/f64.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,39 +1509,39 @@ impl f64 {
15091509

15101510
/// Float addition that allows optimizations based on algebraic rules.
15111511
#[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")]
15131513
#[inline]
15141514
pub fn add_algebraic(self, rhs: f64) -> f64 {
15151515
intrinsics::fadd_algebraic(self, rhs)
15161516
}
15171517

15181518
/// Float subtraction that allows optimizations based on algebraic rules.
15191519
#[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")]
15211521
#[inline]
15221522
pub fn sub_algebraic(self, rhs: f64) -> f64 {
15231523
intrinsics::fsub_algebraic(self, rhs)
15241524
}
15251525

15261526
/// Float multiplication that allows optimizations based on algebraic rules.
15271527
#[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")]
15291529
#[inline]
15301530
pub fn mul_algebraic(self, rhs: f64) -> f64 {
15311531
intrinsics::fmul_algebraic(self, rhs)
15321532
}
15331533

15341534
/// Float division that allows optimizations based on algebraic rules.
15351535
#[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")]
15371537
#[inline]
15381538
pub fn div_algebraic(self, rhs: f64) -> f64 {
15391539
intrinsics::fdiv_algebraic(self, rhs)
15401540
}
15411541

15421542
/// Float remainder that allows optimizations based on algebraic rules.
15431543
#[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")]
15451545
#[inline]
15461546
pub fn rem_algebraic(self, rhs: f64) -> f64 {
15471547
intrinsics::frem_algebraic(self, rhs)

0 commit comments

Comments
 (0)