summaryrefslogtreecommitdiff
path: root/src/passes/Memory64Lowering.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-08-18 09:48:18 -0700
committerGitHub <noreply@github.com>2022-08-18 09:48:18 -0700
commit296a63eaaabd28990d6b3acf63af3d9d21190b8d (patch)
tree430536ca67dddc0550faaf19f3948f0039fc7b24 /src/passes/Memory64Lowering.cpp
parent68bf5e3790c8ca95f52c5c5758775a592e708d77 (diff)
downloadbinaryen-296a63eaaabd28990d6b3acf63af3d9d21190b8d.tar.gz
binaryen-296a63eaaabd28990d6b3acf63af3d9d21190b8d.tar.bz2
binaryen-296a63eaaabd28990d6b3acf63af3d9d21190b8d.zip
Fix Memory64 binary parsing after #4811 (#4933)
Due to missing test coverage, we missed in #4811 that some memory operations needed to get make64() called on them.
Diffstat (limited to 'src/passes/Memory64Lowering.cpp')
-rw-r--r--src/passes/Memory64Lowering.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/passes/Memory64Lowering.cpp b/src/passes/Memory64Lowering.cpp
index 7e581c22b..15f3a7719 100644
--- a/src/passes/Memory64Lowering.cpp
+++ b/src/passes/Memory64Lowering.cpp
@@ -29,10 +29,6 @@ namespace wasm {
struct Memory64Lowering : public WalkerPass<PostWalker<Memory64Lowering>> {
- void run(PassRunner* runner, Module* module) override {
- super::run(runner, module);
- }
-
void wrapAddress64(Expression*& ptr, Name memoryName) {
if (ptr->type == Type::unreachable) {
return;