slvm/float/mod.rs
1//! This module controls access to two different floating point implementations (F56 and F32Wrap).
2//! F32Wrap is implemented in this file, and F56 is implemented in its own file.
3//! The purpose of this module is to allow the Value module to switch between the two implementations
4
5mod float_32;
6mod float_56;
7
8pub use self::float_32::F32Wrap;
9pub use self::float_56::F56;