ckb_vm_aot/
lib.rs

1#[cfg(has_aot)]
2#[macro_use]
3extern crate derive_more;
4
5#[cfg(has_aot)]
6mod emitter;
7#[cfg(has_aot)]
8mod error;
9#[cfg(has_aot)]
10mod label_gather;
11#[cfg(has_aot)]
12pub use error::AotError;
13#[cfg(has_aot)]
14pub use label_gather::{AotCode, AotCompilingMachine, AotMachine};