diff options
author | Alon Zakai <azakai@google.com> | 2021-07-02 10:04:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 10:04:48 -0700 |
commit | 98d654257cd22b4912121d022d484e4750932329 (patch) | |
tree | 9e58db97d7447258c78df71a72fe95fe66949842 /test/lit/passes/ssa-gc-nn-locals.wast | |
parent | d2347ff02d807fc38559d5f436eabae694562dae (diff) | |
download | binaryen-98d654257cd22b4912121d022d484e4750932329.tar.gz binaryen-98d654257cd22b4912121d022d484e4750932329.tar.bz2 binaryen-98d654257cd22b4912121d022d484e4750932329.zip |
[Wasm GC] Add support for non-nullable locals in binary reading (#3955)
We only tested that feature on the text format. For binary support, the reader needs
to know that the feature is enabled, so that it allows non-nullable locals in that
case (i.e., does not apply the workarounds to remove them).
Fixes #3953
Diffstat (limited to 'test/lit/passes/ssa-gc-nn-locals.wast')
-rw-r--r-- | test/lit/passes/ssa-gc-nn-locals.wast | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lit/passes/ssa-gc-nn-locals.wast b/test/lit/passes/ssa-gc-nn-locals.wast index 149a0c5c7..57cb43118 100644 --- a/test/lit/passes/ssa-gc-nn-locals.wast +++ b/test/lit/passes/ssa-gc-nn-locals.wast @@ -1,5 +1,7 @@ ;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited. -;; RUN: wasm-opt %s -all --ssa --enable-gc-nn-locals -S -o - | filecheck %s +;; -g --roundtrip are added to show that we properly handle non-nullable locals +;; through the binary format as well (-g is for the function names). +;; RUN: wasm-opt %s -all --ssa --enable-gc-nn-locals -g --roundtrip -S -o - | filecheck %s (module ;; CHECK: (func $nn-locals |