summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-09-11 19:47:08 -0500
committerGitHub <noreply@github.com>2023-09-12 00:47:08 +0000
commit592f6ccba11e0d9b74d9fb6965eae17c76aa45b8 (patch)
tree3ef82e0feab0539980b61a709abf660d02f16c19 /scripts
parente9d0fb7251dd6dd3d629fe6c389490a0a0e92c24 (diff)
downloadbinaryen-592f6ccba11e0d9b74d9fb6965eae17c76aa45b8.tar.gz
binaryen-592f6ccba11e0d9b74d9fb6965eae17c76aa45b8.tar.bz2
binaryen-592f6ccba11e0d9b74d9fb6965eae17c76aa45b8.zip
Remove legacy GC text syntax (#5929)
Remove the old forms of ref.test and ref.cast that took heap types instead of ref types and remove the old array.init_static name for array.new_fixed.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-s-parser.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py
index 7e8a5b830..715a23d82 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -583,7 +583,6 @@ instructions = [
("array.new_default", "makeArrayNew(s, true)"),
("array.new_data", "makeArrayNewData(s)"),
("array.new_elem", "makeArrayNewElem(s)"),
- ("array.init_static", "makeArrayNewFixed(s)"), # deprecated
("array.new_fixed", "makeArrayNewFixed(s)"),
("array.get", "makeArrayGet(s)"),
("array.get_s", "makeArrayGet(s, true)"),