Extract abi handling to abi.rs
This commit is contained in:
parent
b454bc34fb
commit
1138d38d87
4 changed files with 150 additions and 132 deletions
|
@ -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::*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue