diff options
author | Thomas Lively <tlively@google.com> | 2023-04-14 17:54:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 17:54:25 -0700 |
commit | d0621e5820b4ce1b72907f5cdb3c68487ce20c60 (patch) | |
tree | 60832f328708f01ea6eed4cffc2da95cccc58c70 /test/lit/binary | |
parent | 56fe22d30ddd4deac619e41824fc69079dcd7a47 (diff) | |
download | binaryen-d0621e5820b4ce1b72907f5cdb3c68487ce20c60.tar.gz binaryen-d0621e5820b4ce1b72907f5cdb3c68487ce20c60.tar.bz2 binaryen-d0621e5820b4ce1b72907f5cdb3c68487ce20c60.zip |
Remove the --hybrid and --nominal command line options (#5669)
After this change, the only type system usable from the tools will be the
standard isorecursive type system. The nominal type system is still usable via
the API, but it will be removed entirely in a follow-on PR.
Diffstat (limited to 'test/lit/binary')
-rw-r--r-- | test/lit/binary/prototype-nominal-format.test | 27 | ||||
-rw-r--r-- | test/lit/binary/prototype-nominal-format.test.wasm | bin | 211 -> 0 bytes |
2 files changed, 0 insertions, 27 deletions
diff --git a/test/lit/binary/prototype-nominal-format.test b/test/lit/binary/prototype-nominal-format.test deleted file mode 100644 index 1f9d27951..000000000 --- a/test/lit/binary/prototype-nominal-format.test +++ /dev/null @@ -1,27 +0,0 @@ -;; Test the we can properly parse the prototype nominal binary format that we no -;; longer emit. - -;; RUN: wasm-dis %s.wasm -all --nominal | filecheck %s - -;; CHECK: (module -;; CHECK-NEXT: (type $super-struct (struct (field i32))) -;; CHECK-NEXT: (type $sub-struct (struct (field i32) (field i64))) -;; CHECK-NEXT: (type $none_=>_ref|$super-struct| (func (result (ref $super-struct)))) -;; CHECK-NEXT: (type $none_=>_ref|$sub-struct| (func (result (ref $sub-struct)))) -;; CHECK-NEXT: (type $none_=>_ref|$super-array| (func (result (ref $super-array)))) -;; CHECK-NEXT: (type $none_=>_ref|$sub-array| (func (result (ref $sub-array)))) -;; CHECK-NEXT: (type $super-array (array (ref $super-struct))) -;; CHECK-NEXT: (type $sub-array (array (ref $sub-struct))) -;; CHECK-NEXT: (func $make-super-struct (type $none_=>_ref|$super-struct|) (result (ref $super-struct)) -;; CHECK-NEXT: (call $make-sub-struct) -;; CHECK-NEXT: ) -;; CHECK-NEXT: (func $make-sub-struct (type $none_=>_ref|$sub-struct|) (result (ref $sub-struct)) -;; CHECK-NEXT: (unreachable) -;; CHECK-NEXT: ) -;; CHECK-NEXT: (func $make-super-array (type $none_=>_ref|$super-array|) (result (ref $super-array)) -;; CHECK-NEXT: (call $make-sub-array) -;; CHECK-NEXT: ) -;; CHECK-NEXT: (func $make-sub-array (type $none_=>_ref|$sub-array|) (result (ref $sub-array)) -;; CHECK-NEXT: (unreachable) -;; CHECK-NEXT: ) -;; CHECK-NEXT: ) diff --git a/test/lit/binary/prototype-nominal-format.test.wasm b/test/lit/binary/prototype-nominal-format.test.wasm Binary files differdeleted file mode 100644 index 97485ae4f..000000000 --- a/test/lit/binary/prototype-nominal-format.test.wasm +++ /dev/null |