Fixed LLVM compilation

This commit is contained in:
Syrus
2020-05-18 13:23:19 -07:00
parent f666a394c5
commit f20d09fb2d

View File

@ -147,4 +147,13 @@ impl Compiler for LLVMCompiler {
})
.collect::<Result<Vec<_>, CompileError>>()
}
fn compile_dynamic_function_trampolines(
&self,
module: &Module,
) -> Result<PrimaryMap<FunctionIndex, FunctionBody>, CompileError> {
Ok(PrimaryMap::new())
// unimplemented!("Dynamic funciton trampolines not yet implemented");
}
}