Files
wasmtime/src/libcretonne/lib.rs
Jakob Stoklund Olesen 9c9be1cb58 Break entity references and instruction info out into new modules.
Avoid gathering too much code in repr.rs.

The `entities` module contains entity reference types, and the `instructions`
module contains instruction opcodes and formats.
2016-05-13 14:02:04 -07:00

14 lines
347 B
Rust

// ====------------------------------------------------------------------------------------==== //
//
// Cretonne code generation library.
//
// ====------------------------------------------------------------------------------------==== //
pub mod types;
pub mod immediates;
pub mod entities;
pub mod instructions;
pub mod repr;
pub mod write;