diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-02-14 12:54:15 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-02-14 19:26:41 -0800 |
| commit | 90311fc68fb484310df9ffc614e592dee30644ae (patch) | |
| tree | 6031108f4add627a78c23a4eb93a1f80ae26ec14 /src/libstd/num/mod.rs | |
| parent | 994747022a45b5c2b03f38dddbe8b43bf09679f3 (diff) | |
| download | rust-90311fc68fb484310df9ffc614e592dee30644ae.tar.gz rust-90311fc68fb484310df9ffc614e592dee30644ae.zip | |
Enable 64-bit checked multiplication on 32-bit
This was just waiting for compiler-rt support, which was added in #12027 Closes #8449
Diffstat (limited to 'src/libstd/num/mod.rs')
| -rw-r--r-- | src/libstd/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/num/mod.rs b/src/libstd/num/mod.rs index c5510078e39..c9908dde6e0 100644 --- a/src/libstd/num/mod.rs +++ b/src/libstd/num/mod.rs @@ -426,7 +426,7 @@ pub trait Int: Integer + Bitwise + CheckedAdd + CheckedSub - // + CheckedMul // FIXME #8849: currently not impled on 32-bit + + CheckedMul + CheckedDiv {} /// Returns the smallest power of 2 greater than or equal to `n`. |
