You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Centril opened this issue
Jun 7, 2019
· 0 comments
· Fixed by #61647
Labels
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
In f32::signum and f64::signum we use intrinsics::copysignf32 and intrinsics::copysignf64. However, these intrinsics are exposed with a stable wrapper f32::copysign and f64::copysign. We should use those instead.
The text was updated successfully, but these errors were encountered:
Centril
added
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
labels
Jun 7, 2019
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
In
f32::signum
andf64::signum
we useintrinsics::copysignf32
andintrinsics::copysignf64
. However, these intrinsics are exposed with a stable wrapperf32::copysign
andf64::copysign
. We should use those instead.rust/src/libstd/f32.rs
Line 191 in d132f54
rust/src/libstd/f64.rs
Line 169 in d132f54
The text was updated successfully, but these errors were encountered: