summaryrefslogtreecommitdiff
path: root/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-11-08 17:35:33 -0800
committerGitHub <noreply@github.com>2021-11-08 17:35:33 -0800
commit31a5bf7ad7dbe30ec47766271ba13276117f98a0 (patch)
treee40a3f1e8b5ddfbed9b8ada1dacfe46f8671f5e4 /test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
parented4d22e22414a561e5b5af0064a3a47fc8db1645 (diff)
downloadbinaryen-31a5bf7ad7dbe30ec47766271ba13276117f98a0.tar.gz
binaryen-31a5bf7ad7dbe30ec47766271ba13276117f98a0.tar.bz2
binaryen-31a5bf7ad7dbe30ec47766271ba13276117f98a0.zip
Print heap types in text format in nominal mode (#4316)
Without this roundtripping may not work in nominal mode, as we might not assign the expected heap types in the right places. Specifically, when the signature matches but the nominal types are distinct then we need to keep them that way (and the sugar in the text format parsing will merge them).
Diffstat (limited to 'test/lit/passes/optimize-instructions-call_ref-roundtrip.wast')
-rw-r--r--test/lit/passes/optimize-instructions-call_ref-roundtrip.wast8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast b/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
index 0477abe79..1d362780b 100644
--- a/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
+++ b/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
@@ -42,20 +42,20 @@
(elem $elem-3 (table $table-3) (i32.const 0) (ref null $v3)
(ref.func $helper-3))
- ;; CHECK: (func $helper-1
+ ;; CHECK: (func $helper-1 (type $v1)
;; CHECK-NEXT: (nop)
;; CHECK-NEXT: )
(func $helper-1 (type $v1))
- ;; CHECK: (func $helper-2
+ ;; CHECK: (func $helper-2 (type $v2)
;; CHECK-NEXT: (nop)
;; CHECK-NEXT: )
(func $helper-2 (type $v2))
- ;; CHECK: (func $helper-3
+ ;; CHECK: (func $helper-3 (type $v3)
;; CHECK-NEXT: (nop)
;; CHECK-NEXT: )
(func $helper-3 (type $v3))
- ;; CHECK: (func $call-table-get (param $x i32)
+ ;; CHECK: (func $call-table-get (type $i32_=>_none) (param $x i32)
;; CHECK-NEXT: (call_indirect $table-1 (type $v1)
;; CHECK-NEXT: (local.get $x)
;; CHECK-NEXT: )