diff options
author | Alon Zakai <azakai@google.com> | 2020-08-21 12:00:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 12:00:44 -0700 |
commit | 7d1c17479318609b4af564f8206c1e367fdf6eac (patch) | |
tree | a2c74b41e331c009e7edb936c0114c1d8d2f7312 /src/tools/wasm-emscripten-finalize.cpp | |
parent | 4548845a9689e235894e28174bf79358960ab29d (diff) | |
download | binaryen-7d1c17479318609b4af564f8206c1e367fdf6eac.tar.gz binaryen-7d1c17479318609b4af564f8206c1e367fdf6eac.tar.bz2 binaryen-7d1c17479318609b4af564f8206c1e367fdf6eac.zip |
Remove old EM_ASM handling method (#3069)
The minimizeWasmChanges flag now does nothing (but new changes are
coming, so keep it around) - this moves us to always doing the new way of
things. With that we can update the tests.
See #3043
Diffstat (limited to 'src/tools/wasm-emscripten-finalize.cpp')
-rw-r--r-- | src/tools/wasm-emscripten-finalize.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/wasm-emscripten-finalize.cpp b/src/tools/wasm-emscripten-finalize.cpp index 960c6870c..1d1ea2247 100644 --- a/src/tools/wasm-emscripten-finalize.cpp +++ b/src/tools/wasm-emscripten-finalize.cpp @@ -56,6 +56,7 @@ int main(int argc, const char* argv[]) { bool checkStackOverflow = false; uint64_t globalBase = INVALID_BASE; bool standaloneWasm = false; + // TODO: remove after https://github.com/WebAssembly/binaryen/issues/3043 bool minimizeWasmChanges = false; ToolOptions options("wasm-emscripten-finalize", |