Files
wasmtime/src/libcretonne/lib.rs
Jakob Stoklund Olesen 90bb2fd27d Add enums for condition codes.
The icmp and fmp instructions use different kinds of condition codes because
integers and floating point values behave differently.

Add a CondCode trait implementing shared behavior.
2016-07-06 15:51:41 -07:00

17 lines
428 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 write;