diff options
author | Thomas Lively <tlively@google.com> | 2023-04-13 12:38:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 19:38:47 +0000 |
commit | d2ee08a8b59e6612b5477d99dc684add5639a70b (patch) | |
tree | 8d8e8fe583e31b459f858eba83aded6124823891 /test/lit/isorecursive-good.wast | |
parent | c72777feeb8ac83fe91cf525ffbfaa3349ace33c (diff) | |
download | binaryen-d2ee08a8b59e6612b5477d99dc684add5639a70b.tar.gz binaryen-d2ee08a8b59e6612b5477d99dc684add5639a70b.tar.bz2 binaryen-d2ee08a8b59e6612b5477d99dc684add5639a70b.zip |
Update lit tests and remove stale checks (#5662)
Remove stale check lines for --nominal mode checks that were removed in #5660
and rerun auto_update_checks.py to ensure the checks are stable.
Diffstat (limited to 'test/lit/isorecursive-good.wast')
-rw-r--r-- | test/lit/isorecursive-good.wast | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/test/lit/isorecursive-good.wast b/test/lit/isorecursive-good.wast index 53631c92b..eea7ec546 100644 --- a/test/lit/isorecursive-good.wast +++ b/test/lit/isorecursive-good.wast @@ -7,14 +7,9 @@ (rec ;; HYBRID: (rec ;; HYBRID-NEXT: (type $super-struct (struct (field i32))) - ;; NOMINAL: (type $super-array (array (ref $super-struct))) - - ;; NOMINAL: (type $sub-array (array_subtype (ref $sub-struct) $super-array)) - - ;; NOMINAL: (type $super-struct (struct (field i32))) (type $super-struct (struct i32)) - ;; HYBRID: (type $sub-struct (struct_subtype (field i32) (field i64) $super-struct)) ;; NOMINAL: (type $sub-struct (struct_subtype (field i32) (field i64) $super-struct)) + ;; HYBRID: (type $sub-struct (struct_subtype (field i32) (field i64) $super-struct)) (type $sub-struct (sub $super-struct (struct i32 i64))) ) @@ -29,19 +24,15 @@ (rec ;; HYBRID: (rec ;; HYBRID-NEXT: (type $super-func (func (param (ref $sub-array)) (result (ref $super-array)))) - ;; NOMINAL: (type $super-func (func (param (ref $sub-array)) (result (ref $super-array)))) (type $super-func (func (param (ref $sub-array)) (result (ref $super-array)))) - ;; HYBRID: (type $sub-func (func_subtype (param (ref $super-array)) (result (ref $sub-array)) $super-func)) ;; NOMINAL: (type $sub-func (func_subtype (param (ref $super-array)) (result (ref $sub-array)) $super-func)) + ;; HYBRID: (type $sub-func (func_subtype (param (ref $super-array)) (result (ref $sub-array)) $super-func)) (type $sub-func (sub $super-func (func (param (ref $super-array)) (result (ref $sub-array))))) ) ;; HYBRID: (func $make-super-struct (type $none_=>_ref|$super-struct|) (result (ref $super-struct)) ;; HYBRID-NEXT: (call $make-sub-struct) ;; HYBRID-NEXT: ) - ;; NOMINAL: (func $make-super-struct (type $none_=>_ref|$super-struct|) (result (ref $super-struct)) - ;; NOMINAL-NEXT: (call $make-sub-struct) - ;; NOMINAL-NEXT: ) (func $make-super-struct (result (ref $super-struct)) (call $make-sub-struct) ) @@ -49,9 +40,6 @@ ;; HYBRID: (func $make-sub-struct (type $none_=>_ref|$sub-struct|) (result (ref $sub-struct)) ;; HYBRID-NEXT: (unreachable) ;; HYBRID-NEXT: ) - ;; NOMINAL: (func $make-sub-struct (type $none_=>_ref|$sub-struct|) (result (ref $sub-struct)) - ;; NOMINAL-NEXT: (unreachable) - ;; NOMINAL-NEXT: ) (func $make-sub-struct (result (ref $sub-struct)) (unreachable) ) @@ -59,9 +47,6 @@ ;; HYBRID: (func $make-super-array (type $none_=>_ref|$super-array|) (result (ref $super-array)) ;; HYBRID-NEXT: (call $make-sub-array) ;; HYBRID-NEXT: ) - ;; NOMINAL: (func $make-super-array (type $none_=>_ref|$super-array|) (result (ref $super-array)) - ;; NOMINAL-NEXT: (call $make-sub-array) - ;; NOMINAL-NEXT: ) (func $make-super-array (result (ref $super-array)) (call $make-sub-array) ) @@ -69,9 +54,6 @@ ;; HYBRID: (func $make-sub-array (type $none_=>_ref|$sub-array|) (result (ref $sub-array)) ;; HYBRID-NEXT: (unreachable) ;; HYBRID-NEXT: ) - ;; NOMINAL: (func $make-sub-array (type $none_=>_ref|$sub-array|) (result (ref $sub-array)) - ;; NOMINAL-NEXT: (unreachable) - ;; NOMINAL-NEXT: ) (func $make-sub-array (result (ref $sub-array)) (unreachable) ) @@ -79,9 +61,6 @@ ;; HYBRID: (func $make-super-func (type $none_=>_ref|$super-func|) (result (ref $super-func)) ;; HYBRID-NEXT: (call $make-sub-func) ;; HYBRID-NEXT: ) - ;; NOMINAL: (func $make-super-func (type $none_=>_ref|$super-func|) (result (ref $super-func)) - ;; NOMINAL-NEXT: (call $make-sub-func) - ;; NOMINAL-NEXT: ) (func $make-super-func (result (ref $super-func)) (call $make-sub-func) ) @@ -89,9 +68,6 @@ ;; HYBRID: (func $make-sub-func (type $none_=>_ref|$sub-func|) (result (ref $sub-func)) ;; HYBRID-NEXT: (unreachable) ;; HYBRID-NEXT: ) - ;; NOMINAL: (func $make-sub-func (type $none_=>_ref|$sub-func|) (result (ref $sub-func)) - ;; NOMINAL-NEXT: (unreachable) - ;; NOMINAL-NEXT: ) (func $make-sub-func (result (ref $sub-func)) (unreachable) ) |