Skip to content

Commit f0f5e77

Browse files
authored
Rollup merge of #65312 - tspiteri:signed-sat-mul, r=dtolnay
improve performance of signed saturating_mul Reciprocal throughput is improved from 2.3 to 1.7. https://godbolt.org/z/ROMiX6 Fixes #65309.
2 parents 2a9c791 + 57aae75 commit f0f5e77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/num/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ $EndFeature, "
10581058
#[inline]
10591059
pub fn saturating_mul(self, rhs: Self) -> Self {
10601060
self.checked_mul(rhs).unwrap_or_else(|| {
1061-
if (self < 0 && rhs < 0) || (self > 0 && rhs > 0) {
1061+
if (self < 0) == (rhs < 0) {
10621062
Self::max_value()
10631063
} else {
10641064
Self::min_value()

0 commit comments

Comments
 (0)