diff options
author | Alon Zakai <azakai@google.com> | 2019-07-16 13:10:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-16 13:10:05 -0700 |
commit | 6cc61b89bc3a22fb2dc42999d27af52124197baf (patch) | |
tree | e3d209b43327b41b4031184e74eb6b64246e7453 /src/passes/pass.cpp | |
parent | f6ca3828aca8e7da966ba158dd9dab16205206db (diff) | |
download | binaryen-6cc61b89bc3a22fb2dc42999d27af52124197baf.tar.gz binaryen-6cc61b89bc3a22fb2dc42999d27af52124197baf.tar.bz2 binaryen-6cc61b89bc3a22fb2dc42999d27af52124197baf.zip |
Cleanups after renaming Bysyncify to Asyncify (#2228)
* Clarify the difference between old and new Asyncify.
* Remove the old --bysyncify pass option.
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index f5284e4db..0b5c53296 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -77,8 +77,6 @@ void PassRegistry::registerPasses() { registerPass("asyncify", "async/await style transform, allowing pausing and resuming", createAsyncifyPass); - registerPass( - "bysyncify", "(temporary alias for asyncify)", createAsyncifyPass); registerPass("avoid-reinterprets", "Tries to avoid reinterpret operations via more loads", createAvoidReinterpretsPass); |