diff options
author | Alon Zakai <azakai@google.com> | 2023-11-06 12:29:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 12:29:19 -0800 |
commit | e3d27166370da202bef6c012014604beac41d43f (patch) | |
tree | f9e0515c0c6044e6c9b12f6d5d83f8ba99ab0fc3 /src/passes/Directize.cpp | |
parent | 4fba26a77ea344b8d2b49cc8e1afdc8fcda13e96 (diff) | |
download | binaryen-e3d27166370da202bef6c012014604beac41d43f.tar.gz binaryen-e3d27166370da202bef6c012014604beac41d43f.tar.bz2 binaryen-e3d27166370da202bef6c012014604beac41d43f.zip |
Implement table.copy (#6078)
Helps #5951
Diffstat (limited to 'src/passes/Directize.cpp')
-rw-r--r-- | src/passes/Directize.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/passes/Directize.cpp b/src/passes/Directize.cpp index 34930d127..78294d59d 100644 --- a/src/passes/Directize.cpp +++ b/src/passes/Directize.cpp @@ -263,6 +263,9 @@ struct Directize : public Pass { void visitTableFill(TableFill* curr) { tablesWithSet.insert(curr->table); } + void visitTableCopy(TableCopy* curr) { + tablesWithSet.insert(curr->destTable); + } }; Finder(tablesWithSet).walkFunction(func); |