Remove write_data_funcaddr and write_data_dataaddr

They are unimplemented by all backends
This commit is contained in:
bjorn3
2020-09-30 13:58:58 +02:00
parent 7608749647
commit 59f95083b1
4 changed files with 1 additions and 101 deletions

View File

@@ -460,25 +460,6 @@ impl<'simple_jit_backend> Backend for SimpleJITBackend {
})
}
fn write_data_funcaddr(
&mut self,
_data: &mut Self::CompiledData,
_offset: usize,
_what: ir::FuncRef,
) {
unimplemented!();
}
fn write_data_dataaddr(
&mut self,
_data: &mut Self::CompiledData,
_offset: usize,
_what: ir::GlobalValue,
_usize: Addend,
) {
unimplemented!();
}
fn finalize_function(
&mut self,
_id: FuncId,