blob: 4922421f18f6dd573eee9f2138555453514ce731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#[cfg(target_arch = "x86_64")]
pub mod x86_64;
#[cfg(target_arch = "aarch64")]
pub mod arm64;
#[cfg(target_arch = "x86_64")]
pub use x86_64 as current;
#[cfg(target_arch = "aarch64")]
pub use arm64 as current;
pub mod lir;
|