summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-07-12 17:39:43 -0400
committerGitHub <noreply@github.com>2024-07-12 14:39:43 -0700
commit20c10df0cc5e5ffb9b8a0ca8cf4895d3416c6771 (patch)
treec7c404370949b4c53f905b6092830145ef1f54e0 /scripts
parenteda6530a187add28f06d9ab84d78b21b5001a6df (diff)
downloadbinaryen-20c10df0cc5e5ffb9b8a0ca8cf4895d3416c6771.tar.gz
binaryen-20c10df0cc5e5ffb9b8a0ca8cf4895d3416c6771.tar.bz2
binaryen-20c10df0cc5e5ffb9b8a0ca8cf4895d3416c6771.zip
Remove non-standard `i31.new` (#6736)
The standard name for the instruction is `ref.i31`. Remove support for the non-standard name and update tests that were still using it.
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 711096a5b..e1bfe3f3d 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -572,7 +572,6 @@ instructions = [
("resume", "makeResume()"),
("suspend", "makeSuspend()"),
# GC
- ("i31.new", "makeRefI31(Unshared)"), # deprecated
("ref.i31", "makeRefI31(Unshared)"),
("ref.i31_shared", "makeRefI31(Shared)"),
("i31.get_s", "makeI31Get(true)"),