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

* It turned out that "table" was renamed.

To `__indirect_function_table`.

* Rebuild binaries.
This commit is contained in:
Sergey Pepyakin
2018-07-15 20:12:34 +02:00
committed by Arkadiy Paronyan
parent 1d726193ba
commit b45020175a
9 changed files with 1 additions and 1 deletions
@@ -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)?;