Files
wasmtime/src/libcretonne/lib.rs
2016-07-31 21:40:11 -07:00

17 lines
422 B
Rust

// ====------------------------------------------------------------------------------------==== //
//
// Cretonne code generation library.
//
// ====------------------------------------------------------------------------------------==== //
pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");
pub mod ir;
pub mod write;
pub mod cfg;
pub mod dominator_tree;
pub mod entity_map;
#[cfg(test)]pub mod test_utils;