diff options
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index 1fe81cbfc..6faf77276 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -221,6 +221,9 @@ void PassRegistry::registerPasses() { "legalizes i64 types on the import/export boundary in a minimal " "manner, only on things only JS will call", createLegalizeJSInterfaceMinimallyPass); + registerPass("legalize-and-prune-js-interface", + "legalizes the import/export boundary and prunes when needed", + createLegalizeAndPruneJSInterfacePass); registerPass("local-cse", "common subexpression elimination inside basic blocks", createLocalCSEPass); |