diff options
author | Thomas Lively <tlively@google.com> | 2023-08-02 14:33:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 11:33:07 -0700 |
commit | 1db7a94a50a4317d705568218cf0221f8cff5994 (patch) | |
tree | b71117cad1ebcd13822e1a0bf17bb58b53d6e909 /test/lit/passes/merge-blocks.wast | |
parent | 465ebbf470e878cac6cf7a9629c413add97f9bb9 (diff) | |
download | binaryen-1db7a94a50a4317d705568218cf0221f8cff5994.tar.gz binaryen-1db7a94a50a4317d705568218cf0221f8cff5994.tar.bz2 binaryen-1db7a94a50a4317d705568218cf0221f8cff5994.zip |
[Wasm GC] Stop printing deprecated cast etc. instructions (#5852)
Stop printing `ref.as_i31`, `br_on_func`, etc. because they have been removed
from the spec and are no longer supported by V8. #5614 already made this change
for the binary format. Like that PR, leave reading unmodified in case someone is
still using these instructions (even though they are useless). They will be
fully removed in a future PR as we finalize things ahead of standardizing
WasmGC.
Diffstat (limited to 'test/lit/passes/merge-blocks.wast')
-rw-r--r-- | test/lit/passes/merge-blocks.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit/passes/merge-blocks.wast b/test/lit/passes/merge-blocks.wast index fd30f4e07..2b3afa771 100644 --- a/test/lit/passes/merge-blocks.wast +++ b/test/lit/passes/merge-blocks.wast @@ -20,7 +20,7 @@ ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (block $label$1 (result i31ref) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (br_on_i31 $label$1 + ;; CHECK-NEXT: (br_on_cast $label$1 nullref (ref i31) ;; CHECK-NEXT: (ref.null none) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) |