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/Print.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/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 51d261126..889eb87fd 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -1950,6 +1950,12 @@ struct PrintExpressionContents printMedium(o, "table.fill "); printName(curr->table, o); } + void visitTableCopy(TableCopy* curr) { + printMedium(o, "table.copy "); + printName(curr->destTable, o); + o << ' '; + printName(curr->sourceTable, o); + } void visitTry(Try* curr) { printMedium(o, "try"); if (curr->name.is()) { |