diff options
author | Thomas Lively <tlively@google.com> | 2022-11-22 20:48:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 02:48:58 +0000 |
commit | 853b31ec89416bef0014e06f2defaef74f47b81e (patch) | |
tree | a288eeab1797ae6623c86cef6a6425c754cf498b /test/reduce | |
parent | f8e6d0253ba96bd26013146282ea4063f5853289 (diff) | |
download | binaryen-853b31ec89416bef0014e06f2defaef74f47b81e.tar.gz binaryen-853b31ec89416bef0014e06f2defaef74f47b81e.tar.bz2 binaryen-853b31ec89416bef0014e06f2defaef74f47b81e.zip |
Change the default type system to isorecursive (#5239)
This makes Binaryen's default type system match the WasmGC spec.
Update the way type definitions without supertypes are printed to reduce the
output diff for MVP tests that do not involve WasmGC. Also port some
type-builder.cpp tests from test/example to test/gtest since they needed to be
rewritten to work with isorecursive type anyway.
A follow-on PR will remove equirecursive types completely.
Diffstat (limited to 'test/reduce')
-rw-r--r-- | test/reduce/imports.wast.txt | 5 | ||||
-rw-r--r-- | test/reduce/memory_table.wast.txt | 6 | ||||
-rw-r--r-- | test/reduce/simple.wast.txt | 5 |
3 files changed, 12 insertions, 4 deletions
diff --git a/test/reduce/imports.wast.txt b/test/reduce/imports.wast.txt index 1c2a8c63f..143240b49 100644 --- a/test/reduce/imports.wast.txt +++ b/test/reduce/imports.wast.txt @@ -1,5 +1,8 @@ (module - (type $none_=>_i32 (func (result i32))) + (rec + (type $none_=>_none (func)) + (type $none_=>_i32 (func (result i32))) + ) (export "x" (func $0)) (func $0 (result i32) (i32.const 5678) diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt index fe9e82072..9da5e8739 100644 --- a/test/reduce/memory_table.wast.txt +++ b/test/reduce/memory_table.wast.txt @@ -1,6 +1,8 @@ (module - (type $none_=>_i32 (func (result i32))) - (type $none_=>_none (func)) + (rec + (type $none_=>_i32 (func (result i32))) + (type $none_=>_none (func)) + ) (memory $0 256 256) (export "f1" (func $0)) (export "f2" (func $1)) diff --git a/test/reduce/simple.wast.txt b/test/reduce/simple.wast.txt index 1c2a8c63f..e621ce52a 100644 --- a/test/reduce/simple.wast.txt +++ b/test/reduce/simple.wast.txt @@ -1,5 +1,8 @@ (module - (type $none_=>_i32 (func (result i32))) + (rec + (type $none_=>_i32 (func (result i32))) + (type $none_=>_none (func)) + ) (export "x" (func $0)) (func $0 (result i32) (i32.const 5678) |