mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 21:58:20 +00:00
Merge branch 'master' into singlepass
# Conflicts: # Cargo.lock
This commit is contained in:
@@ -18,9 +18,8 @@ use wasmer_compiler::wasmparser::{
|
||||
MemoryImmediate, Operator, Type as WpType, TypeOrFuncType as WpTypeOrFuncType,
|
||||
};
|
||||
use wasmer_compiler::{
|
||||
CodeOffset, CompiledFunction, CompiledFunctionUnwindInfo, CustomSection,
|
||||
CustomSectionProtection, FunctionBody, Relocation, RelocationKind, RelocationTarget,
|
||||
SectionBody, SectionIndex,
|
||||
CodeOffset, CompiledFunction, CustomSection, CustomSectionProtection, FunctionBody, Relocation,
|
||||
RelocationKind, RelocationTarget, SectionBody, SectionIndex,
|
||||
};
|
||||
use wasmer_runtime::{MemoryPlan, MemoryStyle, Module, TablePlan, TableStyle, TrapCode};
|
||||
|
||||
@@ -8102,7 +8101,7 @@ impl<'a> FuncGen<'a> {
|
||||
CompiledFunction {
|
||||
body: FunctionBody {
|
||||
body: self.assembler.finalize().unwrap().to_vec(),
|
||||
unwind_info: CompiledFunctionUnwindInfo::None,
|
||||
unwind_info: None,
|
||||
},
|
||||
relocations: self.relocations,
|
||||
jt_offsets: SecondaryMap::new(),
|
||||
@@ -8286,7 +8285,7 @@ pub fn gen_std_trampoline(sig: FunctionType) -> FunctionBody {
|
||||
|
||||
FunctionBody {
|
||||
body: a.finalize().unwrap().to_vec(),
|
||||
unwind_info: CompiledFunctionUnwindInfo::None,
|
||||
unwind_info: None,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user