1
Fork 0

Extract abi handling to abi.rs

This commit is contained in:
bjorn3 2018-07-19 19:33:42 +02:00
parent b454bc34fb
commit 1138d38d87
4 changed files with 150 additions and 132 deletions

View file

@ -33,6 +33,7 @@ use std::sync::{mpsc, Arc};
use std::fs::File;
use std::io::Write;
mod abi;
mod base;
mod constant;
mod common;
@ -64,6 +65,7 @@ mod prelude {
pub use cranelift_module::{Module, Backend, FuncId, DataId, Linkage};
pub use cranelift_simplejit::{SimpleJITBuilder, SimpleJITBackend};
pub use abi::*;
pub use common::Variable;
pub use common::*;