diff options
Diffstat (limited to 'src/passes/LowerInt64.cpp')
-rw-r--r-- | src/passes/LowerInt64.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/passes/LowerInt64.cpp b/src/passes/LowerInt64.cpp index 7af7443e5..b59b1d5fc 100644 --- a/src/passes/LowerInt64.cpp +++ b/src/passes/LowerInt64.cpp @@ -189,6 +189,8 @@ struct LowerInt64 : public Pass { } }; -static RegisterPass<LowerInt64> registerPass("lower-i64", "lowers i64 into pairs of i32s"); +Pass *createLowerInt64Pass() { + return new LowerInt64(); +} } // namespace wasm |