summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2021-10-18 22:48:50 +0300
committerGitHub <noreply@github.com>2021-10-18 12:48:50 -0700
commitf0a8de302b85441deb8864c9e20c561c934e27b8 (patch)
treeb71e540462b865891a0b63d25b0b16b9653fd04a /scripts
parent0bec0a4bbaf4859bb4c7a2f1c4ecda60ccab72f2 (diff)
downloadbinaryen-f0a8de302b85441deb8864c9e20c561c934e27b8.tar.gz
binaryen-f0a8de302b85441deb8864c9e20c561c934e27b8.tar.bz2
binaryen-f0a8de302b85441deb8864c9e20c561c934e27b8.zip
Add table.grow operation (#4245)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-s-parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py
index 22c864cee..3736ce918 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -524,11 +524,11 @@ instructions = [
("table.get", "makeTableGet(s)"),
("table.set", "makeTableSet(s)"),
("table.size", "makeTableSize(s)"),
+ ("table.grow", "makeTableGrow(s)"),
# TODO:
# table.init
# table.fill
# table.copy
- # table.grow
#
# exception handling instructions
("try", "makeTry(s)"),