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/lib.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/lib.rs')
| -rw-r--r-- | src/libcoretest/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcoretest/lib.rs b/src/libcoretest/lib.rs index e87a179f58d..22b285b0343 100644 --- a/src/libcoretest/lib.rs +++ b/src/libcoretest/lib.rs @@ -15,6 +15,8 @@ #![feature(const_fn)] #![feature(core)] #![feature(core_float)] +#![feature(core_private_bignum)] +#![feature(core_private_diy_float)] #![feature(dec2flt)] #![feature(decode_utf16)] #![feature(fixed_size_array)] |
