summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2021-10-09 05:26:08 +0300
committerGitHub <noreply@github.com>2021-10-08 19:26:08 -0700
commitef686a4d932b9b86edc34a3b9b15926f943f6f7b (patch)
tree38a89d5b555d4501b7d504a66c7aec409e45e9b1 /scripts
parent53c5e3e62db25fe3522a1fa615a1f53c4cefdf06 (diff)
downloadbinaryen-ef686a4d932b9b86edc34a3b9b15926f943f6f7b.tar.gz
binaryen-ef686a4d932b9b86edc34a3b9b15926f943f6f7b.tar.bz2
binaryen-ef686a4d932b9b86edc34a3b9b15926f943f6f7b.zip
Add table.size operation (#4224)
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 b296d85ac..22c864cee 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -523,12 +523,12 @@ instructions = [
# table instructions
("table.get", "makeTableGet(s)"),
("table.set", "makeTableSet(s)"),
+ ("table.size", "makeTableSize(s)"),
# TODO:
# table.init
# table.fill
# table.copy
# table.grow
- # table.size
#
# exception handling instructions
("try", "makeTry(s)"),