diff options
author | Alon Zakai <azakai@google.com> | 2020-10-08 12:37:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 12:37:39 -0700 |
commit | e433611dbef8dd83e48fc9402f8ad3fce63c3690 (patch) | |
tree | 8f3517931518dcabbf3aa4c48f17c205dbf606f4 /src/passes/pass.cpp | |
parent | b326a3e84de1125ea0cd11162eea822f7e7e927e (diff) | |
download | binaryen-e433611dbef8dd83e48fc9402f8ad3fce63c3690.tar.gz binaryen-e433611dbef8dd83e48fc9402f8ad3fce63c3690.tar.bz2 binaryen-e433611dbef8dd83e48fc9402f8ad3fce63c3690.zip |
Remove RelooperJumpThreading pass, which was just for fastcomp (#3199)
See emscripten-core/emscripten#11860
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index 48d121098..b653269bf 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -270,9 +270,6 @@ void PassRegistry::registerPasses() { registerPass("print-stack-ir", "print out Stack IR (useful for internal debugging)", createPrintStackIRPass); - registerPass("relooper-jump-threading", - "thread relooper jumps (fastcomp output only)", - createRelooperJumpThreadingPass); registerPass("remove-non-js-ops", "removes operations incompatible with js", createRemoveNonJSOpsPass); |