Files
wasmtime/cranelift/src/libcretonne/lib.rs
Jakob Stoklund Olesen d3ed162bac Begin a layout module.
The Layout data structure will keep track of the order of EBBs and their
instructions.

WIP.
2016-07-15 16:12:31 -07:00

21 lines
478 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;