diff options
author | Thomas Lively <tlively@google.com> | 2022-11-16 13:44:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-16 13:44:33 -0800 |
commit | 570007dbecf86db5ddba8d303896d841fc2b2d27 (patch) | |
tree | 6774a699ed3faf5f6f263b77025c30880e51fead /test/lit/passes/optimize-instructions-call_ref-roundtrip.wast | |
parent | 3528a593f5a588d1819c6de9645b63361c13bf6b (diff) | |
download | binaryen-570007dbecf86db5ddba8d303896d841fc2b2d27.tar.gz binaryen-570007dbecf86db5ddba8d303896d841fc2b2d27.tar.bz2 binaryen-570007dbecf86db5ddba8d303896d841fc2b2d27.zip |
Revert "Make `call_ref` type annotations mandatory (#5246)" (#5265)
This reverts commit b2054b72b7daa89b7ad161c0693befad06a20c90.
It looks like the necessary V8 change has not rolled out everywhere yet.
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 e59c09307..9718b4131 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 $v1 + (call_ref (table.get $table-1 (local.get $x) ) ) - (call_ref $v2 + (call_ref (table.get $table-2 (local.get $x) ) ) - (call_ref $v3 + (call_ref (table.get $table-3 (local.get $x) ) |