about summary refs log tree commit diff
path: root/src/libcoretest/num/flt2dec/mod.rs
diff options
context:
space:
mode:
authorRobin Kruppe <robin.kruppe@gmail.com>2015-09-20 18:34:33 +0200
committerRobin Kruppe <robin.kruppe@gmail.com>2015-09-20 18:39:08 +0200
commitcd67ec306fda0e3d39ead0eda3de2c0b3dd696e2 (patch)
tree1459eb0fbae698a695e0adb7e8d94f561d5fe42f /src/libcoretest/num/flt2dec/mod.rs
parentcff04117064ddee95f425c49f22c8aa5a3a665d4 (diff)
downloadrust-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/flt2dec/mod.rs')
-rw-r--r--src/libcoretest/num/flt2dec/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcoretest/num/flt2dec/mod.rs b/src/libcoretest/num/flt2dec/mod.rs
index 8ae33a44202..309bf6d8192 100644
--- a/src/libcoretest/num/flt2dec/mod.rs
+++ b/src/libcoretest/num/flt2dec/mod.rs
@@ -23,7 +23,6 @@ use core::num::flt2dec::{to_shortest_str, to_shortest_exp_str,
 pub use test::Bencher;
 
 mod estimator;
-mod bignum;
 mod strategy {
     mod dragon;
     mod grisu;