summaryrefslogtreecommitdiff
path: root/src/wasm2js.h
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-11-22 14:44:36 -0800
committerGitHub <noreply@github.com>2024-11-22 14:44:36 -0800
commitca61aeeb87e330635548ce6368ac053576ee994c (patch)
treecc1351fe7377b100a4cfd3ef756132faf370e069 /src/wasm2js.h
parent013a8d346807da751fec283eddf86aee9ea28382 (diff)
downloadbinaryen-ca61aeeb87e330635548ce6368ac053576ee994c.tar.gz
binaryen-ca61aeeb87e330635548ce6368ac053576ee994c.tar.bz2
binaryen-ca61aeeb87e330635548ce6368ac053576ee994c.zip
Remove AutoDrop (#7106)
The only internal use was in wasm2js, which doesn't need it. Fix API tests to explicitly drop expressions as necessary.
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r--src/wasm2js.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h
index d965dcc0c..f81908948 100644
--- a/src/wasm2js.h
+++ b/src/wasm2js.h
@@ -361,7 +361,6 @@ Ref Wasm2JSBuilder::processWasm(Module* wasm, Name funcName) {
// First, do the lowering to a JS-friendly subset.
{
PassRunner runner(wasm, options);
- runner.add(std::make_unique<AutoDrop>());
// TODO: only legalize if necessary - emscripten would already do so, and
// likely other toolchains. but spec test suite needs that.
runner.add("legalize-js-interface");