You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like the compiler completely ignores the exports section, leading to quite a lot of functions missing in my code. This is because they actually have the same function body and LLVM (or the linker, not sure) deduplicates them. However that single remaining function is then exported with both names to the user. wasm2cil does not look at the export section at all it seems and simply exports all functions with their internal name, leading to one or more of my functions missing each.
The text was updated successfully, but these errors were encountered:
It seems like the compiler completely ignores the exports section, leading to quite a lot of functions missing in my code. This is because they actually have the same function body and LLVM (or the linker, not sure) deduplicates them. However that single remaining function is then exported with both names to the user. wasm2cil does not look at the export section at all it seems and simply exports all functions with their internal name, leading to one or more of my functions missing each.
The text was updated successfully, but these errors were encountered: