mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-19 20:01:20 +00:00
Add initial progress to add LLVM to module refactor
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -26,6 +26,14 @@ impl LLVMCompiler {
|
||||
}
|
||||
}
|
||||
|
||||
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
||||
pub type LLVMStreamingCompiler = SimpleStreamingCompilerGen<
|
||||
code::LLVMModuleCodeGenerator,
|
||||
code::LLVMFunctionCodeGenerator,
|
||||
backend::LLVMBackend,
|
||||
code::CodegenError,
|
||||
>;
|
||||
|
||||
impl Compiler for LLVMCompiler {
|
||||
fn compile(
|
||||
&self,
|
||||
|
Reference in New Issue
Block a user