Replies: 1 comment
-
|
Closing as duplicate of WebAssembly/binaryen#7190 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Since Emscripten uses
clangto generate object/wasm files at compile time (e.g. C) and useswasm-optto optimize the code at linking time, and since bothclangandwasm-optare given the same optimization level (e.g. O2), why do we still need to usewasm-optto optimize the Wasm binary after optimizing on LLVM-IR?wasm-optalso provides some general passes, are these general passes not possible with LLVM's optimization?clangandwasm-opt, and do any of these passes have the same functionality?Beta Was this translation helpful? Give feedback.
All reactions