diff options
author | Sam Clegg <sbc@chromium.org> | 2021-10-13 09:52:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 16:52:25 +0000 |
commit | 30c1e983d30b33a8004b39fd60cbd64477a7956c (patch) | |
tree | cb17fc468d4fab92f961d49c54798051eea8c617 /test/typecheck | |
parent | 081f6c21ef0998c21f7b33bc82cfa50d5a4ddfd2 (diff) | |
download | wabt-30c1e983d30b33a8004b39fd60cbd64477a7956c.tar.gz wabt-30c1e983d30b33a8004b39fd60cbd64477a7956c.tar.bz2 wabt-30c1e983d30b33a8004b39fd60cbd64477a7956c.zip |
Enable reference types by default (#1729)
This features was finished earlier this year:
https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md
One thing to note is that the version of the spec tests we currently
have in third_party/testsuite doesn't have ref types merged yet so
this change disables ref types when running some of those tests. This
can be removed in a followup when we update the testsuite.
Diffstat (limited to 'test/typecheck')
-rw-r--r-- | test/typecheck/bad-reference-types-no-table.txt | 5 | ||||
-rw-r--r-- | test/typecheck/if-anyref.txt | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/typecheck/bad-reference-types-no-table.txt b/test/typecheck/bad-reference-types-no-table.txt index 0c0449ee..6f9d458e 100644 --- a/test/typecheck/bad-reference-types-no-table.txt +++ b/test/typecheck/bad-reference-types-no-table.txt @@ -1,5 +1,4 @@ ;;; TOOL: wat2wasm -;;; ARGS: --enable-reference-types ;;; ERROR: 1 (module @@ -11,10 +10,10 @@ ) ) (;; STDERR ;;; -out/test/typecheck/bad-reference-types-no-table.txt:9:15: error: undefined table variable "$t" +out/test/typecheck/bad-reference-types-no-table.txt:8:15: error: undefined table variable "$t" table.get $t ^^ -out/test/typecheck/bad-reference-types-no-table.txt:10:15: error: undefined table variable "$t" +out/test/typecheck/bad-reference-types-no-table.txt:9:15: error: undefined table variable "$t" table.set $t ^^ ;;; STDERR ;;) diff --git a/test/typecheck/if-anyref.txt b/test/typecheck/if-anyref.txt index 049d7992..7d84c1cf 100644 --- a/test/typecheck/if-anyref.txt +++ b/test/typecheck/if-anyref.txt @@ -1,5 +1,4 @@ ;;; TOOL: wat2wasm -;;; ARGS: --enable-reference-types (module (func (param externref) (result externref) i32.const 0 |