diff options
author | Thomas Lively <tlively@google.com> | 2022-11-15 08:39:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 08:39:03 -0800 |
commit | b2054b72b7daa89b7ad161c0693befad06a20c90 (patch) | |
tree | 3f2691dadc7af9ee6c86d701ebfebcb8e525c843 /test/lit/passes/optimize-instructions-call_ref-roundtrip.wast | |
parent | 8225e485a24c5fa6fffb0c9f0a3ee8615bcfa0d9 (diff) | |
download | binaryen-b2054b72b7daa89b7ad161c0693befad06a20c90.tar.gz binaryen-b2054b72b7daa89b7ad161c0693befad06a20c90.tar.bz2 binaryen-b2054b72b7daa89b7ad161c0693befad06a20c90.zip |
Make `call_ref` type annotations mandatory (#5246)
They were optional for a while to allow users to gracefully transition to using
them, but now make them mandatory to match the upstream WasmGC spec.
Diffstat (limited to 'test/lit/passes/optimize-instructions-call_ref-roundtrip.wast')
-rw-r--r-- | test/lit/passes/optimize-instructions-call_ref-roundtrip.wast | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast b/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast index 9718b4131..e59c09307 100644 --- a/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast +++ b/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast @@ -69,17 +69,17 @@ (func $call-table-get (param $x i32) ;; The heap type of the call_indirects that we emit here should be the ;; identical one as on the table that they correspond to. - (call_ref + (call_ref $v1 (table.get $table-1 (local.get $x) ) ) - (call_ref + (call_ref $v2 (table.get $table-2 (local.get $x) ) ) - (call_ref + (call_ref $v3 (table.get $table-3 (local.get $x) ) |