about summary refs log tree commit diff
path: root/src/libcoretest/num/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/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/mod.rs')
-rw-r--r--src/libcoretest/num/mod.rs1
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