summaryrefslogtreecommitdiff
path: root/test/lit/isorecursive-whole-group.wast
blob: 6bc6c44379669495f3c0c6016748c4fc0ec645d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.

;; RUN: wasm-opt %s -all -S -o - | filecheck %s
;; RUN: wasm-opt %s -all --roundtrip -S -o - | filecheck %s

;; Check that unused types are still included in the output when they are part
;; of a recursion group with used types.

(module
 (rec
  ;; CHECK:      (rec
  ;; CHECK-NEXT:  (type $used (sub (struct)))
  (type $used (sub (struct)))
  ;; CHECK:       (type $unused (sub (struct)))
  (type $unused (sub (struct)))
 )

 ;; CHECK:      (global $g (ref null $used) (ref.null none))
 (global $g (ref null $used) (ref.null $used))
)