We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 076b91f commit 7db605cCopy full SHA for 7db605c
src/libstd/num/num.rs
@@ -827,7 +827,8 @@ impl CheckedMul for i32 {
827
}
828
829
830
-#[cfg(not(stage0))]
+// FIXME: #8449: should not be disabled on 32-bit
831
+#[cfg(not(stage0), target_word_size = "64")]
832
impl CheckedMul for i64 {
833
#[inline]
834
fn checked_mul(&self, v: &i64) -> Option<i64> {
@@ -893,7 +894,8 @@ impl CheckedMul for u32 {
893
894
895
896
897
898
899
impl CheckedMul for u64 {
900
901
fn checked_mul(&self, v: &u64) -> Option<u64> {
0 commit comments