diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-12-20 19:36:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 19:36:05 -0800 |
commit | 1f3a1d5fae0296fdf503968131905be9e8f40cf4 (patch) | |
tree | 09ecfc4a4e193296cbf27014564e959f12010b89 /test/strip | |
parent | e59cf9369004a521814222afbc05ae6b59446cd5 (diff) | |
download | wabt-1f3a1d5fae0296fdf503968131905be9e8f40cf4.tar.gz wabt-1f3a1d5fae0296fdf503968131905be9e8f40cf4.tar.bz2 wabt-1f3a1d5fae0296fdf503968131905be9e8f40cf4.zip |
Finish instruction renaming (#1792)
This finishes #985. This
- replaces the old names in the tests with the new names
- drops support for the deprecated names
- renames test files to match new instruction names
I don't think dropping support for the old names will be a problem at
this point. #985 says the old names are supported for convenience but we
should remove those too at some point; that "some point" may have well
arrived given that three years have passed.
The lists of names updated are in #933, #1564, WebAssembly/spec#720.
Diffstat (limited to 'test/strip')
-rw-r--r-- | test/strip/names.txt | 2 | ||||
-rw-r--r-- | test/strip/no-custom-sections.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/strip/names.txt b/test/strip/names.txt index dbd375bb..dd27b75a 100644 --- a/test/strip/names.txt +++ b/test/strip/names.txt @@ -7,7 +7,7 @@ section(CODE) { count[1] func { locals[decl_count[1] i32_count[1] i32] - get_local 0 + local.get 0 } } section("name") { diff --git a/test/strip/no-custom-sections.txt b/test/strip/no-custom-sections.txt index c2e3703f..aac0d9eb 100644 --- a/test/strip/no-custom-sections.txt +++ b/test/strip/no-custom-sections.txt @@ -7,7 +7,7 @@ section(CODE) { count[1] func { locals[decl_count[1] i32_count[1] i32] - get_local 0 + local.get 0 } } (;; STDOUT ;;; |