Skip to content

Commit

Permalink
jsc/wasm32/wasm32.jsc: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pipcet committed Feb 3, 2021
1 parent 836ca19 commit 43b1184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsc/wasm32/wasm32.jsc
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ Wasm32LM.prototype.dyninfo_symbol_definitions =
for (let [name, symbol] of symbols) {
this.symbols.set(name, symbol);
this.allsymbols.add(symbol);
module.symtab[symbol] = symbol.get_addr();
module.symtab[name] = symbol.get_addr();
}
};

Expand Down

0 comments on commit 43b1184

Please sign in to comment.