blob: 7da386cb0c15af50d70418781e6c96e4f57217b0 (
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
27
|
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; Test that we can parse a binary with a delegate that targets a block instead
;; of a try-catch.
;; Disassembled binary from wabt:
;;
;; (module
;; (type (;0;) (func))
;; (func (;0;) (type 0)
;; block ;; label = @1
;; try ;; label = @2
;; nop
;; delegate 0
;; end))
;; RUN: wasm-opt -all %s.wasm -S -o - | filecheck %s
;; CHECK: (type $0 (func))
;; CHECK: (func $0 (type $0)
;; CHECK-NEXT: (try
;; CHECK-NEXT: (do
;; CHECK-NEXT: (nop)
;; CHECK-NEXT: )
;; CHECK-NEXT: (delegate 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
|