Moved Unwind info a bit to make refactor easier

This commit is contained in:
Syrus
2020-05-04 20:37:28 -07:00
parent 0891b4a442
commit 1363b98e47
7 changed files with 25 additions and 29 deletions

View File

@@ -5,7 +5,7 @@ use inkwell::{
values::FunctionValue, AddressSpace,
};
use wasm_common::{FunctionType, Type};
use wasmer_compiler::{CompileError, CompiledFunctionUnwindInfo, FunctionBody};
use wasmer_compiler::{CompileError, FunctionBody};
pub struct FuncTrampoline {
ctx: Context,
@@ -97,7 +97,7 @@ impl FuncTrampoline {
Ok(FunctionBody {
body: bytes,
unwind_info: CompiledFunctionUnwindInfo::None,
unwind_info: None,
})
}
}