blob: b5f266db32f28875738a9ace766c4fcfb1f4a6a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt %s -all --nominal -S -o - | filecheck %s
;; RUN: wasm-opt %s -all --nominal --roundtrip -S -o - | filecheck %s
(module
;; This will be the "canonical" function type rather than $foo_t
(type $bad_t (func))
;; CHECK: (type $foo_t (func))
(type $foo_t (func))
;; CHECK: (func $foo
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
(func $foo (type $foo_t)
(unreachable)
)
;; $foo needs to be assigned type foo_t rather than bad_t for this to validate.
;; CHECK: (func $make-ref (result (ref $foo_t))
;; CHECK-NEXT: (ref.func $foo)
;; CHECK-NEXT: )
(func $make-ref (result (ref $foo_t))
(ref.func $foo)
)
)
|