diff options
Diffstat (limited to 'src/passes/Memory64Lowering.cpp')
-rw-r--r-- | src/passes/Memory64Lowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Memory64Lowering.cpp b/src/passes/Memory64Lowering.cpp index 879858b71..0a19d11c8 100644 --- a/src/passes/Memory64Lowering.cpp +++ b/src/passes/Memory64Lowering.cpp @@ -181,7 +181,7 @@ struct Memory64Lowering : public WalkerPass<PostWalker<Memory64Lowering>> { if (!module->features.has(FeatureSet::Memory64)) { return; } - super::run(module); + Super::run(module); // Don't modify the memories themselves until after the traversal since we // that would require memories to be the last thing that get visited, and // we don't want to depend on that specific ordering. |