Files
wasmtime/src/libcretonne/lib.rs
2016-07-18 14:28:00 -07:00

23 lines
512 B
Rust

// ====------------------------------------------------------------------------------------==== //
//
// Cretonne code generation library.
//
// ====------------------------------------------------------------------------------------==== //
pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");
pub mod types;
pub mod condcodes;
pub mod immediates;
pub mod entities;
pub mod instructions;
pub mod repr;
pub mod layout;
pub mod write;
pub mod cfg;
pub mod entity_map;
#[cfg(test)] pub mod test_utils;