Make vmctx an i8* so that we can use byte addressing.

Implement dynamic_sigindex.
This commit is contained in:
Nick Lewycky
2020-04-24 15:37:45 -07:00
parent 088d217ee6
commit 8b7da22a1a
2 changed files with 46 additions and 26 deletions

View File

@ -87,7 +87,9 @@ impl Compiler for LLVMCompiler {
&self,
_signatures: &[FuncType],
) -> Result<Vec<CompiledFunction>, CompileError> {
// Note: do not implement this yet
unimplemented!("Trampoline compilation not yet implemented.")
// TODO: implement this
Err(CompileError::Codegen(
"Trampoline compilation not yet implemented.".to_string(),
))
}
}