diff options
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index 5cbf4a31f..4be24cebf 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -334,6 +334,10 @@ void PassRegistry::registerPasses() { registerPass("no-partial-inline", "mark functions as no-inline (for partial inlining only)", createNoPartialInlinePass); + registerPass("llvm-nontrapping-fptoint-lowering", + "lower nontrapping float-to-int operations to wasm mvp and " + "disable the nontrapping fptoint feature", + createLLVMNonTrappingFPToIntLoweringPass); registerPass("once-reduction", "reduces calls to code that only runs once", createOnceReductionPass); |