Skip to content
Snippets Groups Projects
Commit b4502017 authored by Sergey Pepyakin's avatar Sergey Pepyakin Committed by Arkadiy Paronyan
Browse files

Use --export-table from the latest LLD [2] (#325)

* It turned out that "table" was renamed.

To `__indirect_function_table`.

* Rebuild binaries.
parent 1d726193
No related merge requests found
Showing
with 1 addition and 1 deletion
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -503,7 +503,7 @@ impl WasmExecutor {
.clone();
let table: Option<TableRef> = intermediate_instance
.not_started_instance()
.export_by_name("table")
.export_by_name("__indirect_function_table")
.and_then(|e| e.as_table().cloned());
let mut fec = FunctionExecutor::new(memory.clone(), self.heap_pages, table, ext)?;
......
No preview for this file type
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment