refactor: Remove zombie table instruction

master
Sean McBride 3 years ago
parent 30c3d17a2c
commit bb41caeae0

@ -164,19 +164,3 @@ set_global_i64(uint32_t offset, int64_t v)
{
set_i64(offset, v);
}
// Table handling functionality
// INLINE char *
// get_function_from_table(uint32_t idx, uint32_t type_id)
// {
// assert(idx < INDIRECT_TABLE_SIZE);
// struct indirect_table_entry f = local_sandbox_context_cache.module_indirect_table[idx];
// // FIXME: Commented out function type check because of gocr
// // assert(f.type_id == type_id);
// assert(f.func_pointer);
// return f.func_pointer;
// }

Loading…
Cancel
Save