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 9b03310b5..35085c201 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -495,6 +495,9 @@ void PassRegistry::registerPasses() { registerPass("type-unfinalizing", "mark all types as non-final (open)", createTypeUnFinalizingPass); + registerPass("unsubtyping", + "removes unnecessary subtyping relationships", + createUnsubtypingPass); registerPass("untee", "removes local.tees, replacing them with sets and gets", createUnteePass); |