diff options
author | Alon Zakai <azakai@google.com> | 2019-06-30 08:42:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-30 08:42:16 -0700 |
commit | 04c55fd025a972722cfdaf7ff30e8fc6e597e2af (patch) | |
tree | d0517c5e864caf99c2bcfd4f8008b8ca9042c736 | |
parent | ebbcde7585ccfa0217bcf7557dc7f66553f36fcf (diff) | |
download | binaryen-04c55fd025a972722cfdaf7ff30e8fc6e597e2af.tar.gz binaryen-04c55fd025a972722cfdaf7ff30e8fc6e597e2af.tar.bz2 binaryen-04c55fd025a972722cfdaf7ff30e8fc6e597e2af.zip |
wip (#2189)
-rw-r--r-- | src/passes/Bysyncify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Bysyncify.cpp b/src/passes/Bysyncify.cpp index f1e6c9f7d..416869194 100644 --- a/src/passes/Bysyncify.cpp +++ b/src/passes/Bysyncify.cpp @@ -684,6 +684,7 @@ private: // We must handle all control flow above, and all things that can change // the state, so there should be nothing that can reach here - add it // earlier as necessary. + // std::cout << *curr << '\n'; WASM_UNREACHABLE(); } @@ -1004,7 +1005,6 @@ struct Bysyncify : public Pass { runner.add("simplify-locals-nonesting"); runner.add("reorder-locals"); runner.add("merge-blocks"); - runner.add("vacuum"); } runner.add<BysyncifyFlow>(&analyzer); runner.setIsNested(true); |