diff options
| author | Robin Kruppe <robin.kruppe@gmail.com> | 2015-09-20 18:34:33 +0200 |
|---|---|---|
| committer | Robin Kruppe <robin.kruppe@gmail.com> | 2015-09-20 18:39:08 +0200 |
| commit | cd67ec306fda0e3d39ead0eda3de2c0b3dd696e2 (patch) | |
| tree | 1459eb0fbae698a695e0adb7e8d94f561d5fe42f /src/libcoretest/num/mod.rs | |
| parent | cff04117064ddee95f425c49f22c8aa5a3a665d4 (diff) | |
| download | rust-cd67ec306fda0e3d39ead0eda3de2c0b3dd696e2.tar.gz rust-cd67ec306fda0e3d39ead0eda3de2c0b3dd696e2.zip | |
Reorganize core::num internals
Move private bignum module to core::num, because it is not only used in flt2dec. Extract private 80-bit soft-float into new core::num module for the same reason.
Diffstat (limited to 'src/libcoretest/num/mod.rs')
| -rw-r--r-- | src/libcoretest/num/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcoretest/num/mod.rs b/src/libcoretest/num/mod.rs index 9f9d2a4ca16..f57c54faf28 100644 --- a/src/libcoretest/num/mod.rs +++ b/src/libcoretest/num/mod.rs @@ -31,6 +31,7 @@ mod u64; mod flt2dec; mod dec2flt; +mod bignum; /// Helper function for testing numeric operations pub fn test_num<T>(ten: T, two: T) where |
