mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-14 22:55:40 +00:00
20 lines
468 B
Rust
20 lines
468 B
Rust
#![deny(unused_imports, unused_variables, unused_unsafe, unreachable_patterns)]
|
|
#![cfg_attr(nightly, feature(unwind_attributes))]
|
|
|
|
mod backend;
|
|
mod code;
|
|
mod intrinsics;
|
|
mod platform;
|
|
mod read_info;
|
|
mod state;
|
|
mod trampolines;
|
|
|
|
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
|
|
|
pub type LLVMCompiler = SimpleStreamingCompilerGen<
|
|
code::LLVMModuleCodeGenerator,
|
|
code::LLVMFunctionCodeGenerator,
|
|
backend::LLVMBackend,
|
|
code::CodegenError,
|
|
>;
|