Skip to content

Commit 35a2915

Browse files
committed
Remove now-redundant branch
1 parent 730f736 commit 35a2915

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/libstd/f32.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -832,11 +832,7 @@ impl f32 {
832832
#[stable(feature = "rust1", since = "1.0.0")]
833833
#[inline]
834834
pub fn asinh(self) -> f32 {
835-
if self == Self::NEG_INFINITY {
836-
Self::NEG_INFINITY
837-
} else {
838-
(self.abs() + ((self * self) + 1.0).sqrt()).ln().copysign(self)
839-
}
835+
(self.abs() + ((self * self) + 1.0).sqrt()).ln().copysign(self)
840836
}
841837

842838
/// Inverse hyperbolic cosine function.

src/libstd/f64.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -834,11 +834,7 @@ impl f64 {
834834
#[stable(feature = "rust1", since = "1.0.0")]
835835
#[inline]
836836
pub fn asinh(self) -> f64 {
837-
if self == Self::NEG_INFINITY {
838-
Self::NEG_INFINITY
839-
} else {
840-
(self.abs() + ((self * self) + 1.0).sqrt()).ln().copysign(self)
841-
}
837+
(self.abs() + ((self * self) + 1.0).sqrt()).ln().copysign(self)
842838
}
843839

844840
/// Inverse hyperbolic cosine function.

0 commit comments

Comments
 (0)