summaryrefslogtreecommitdiff
path: root/test/roundtrip/rethrow.txt
blob: dc445e86bbb1c577882d0c4bae2b67a2fb1c609c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --enable-exceptions
(module
  (tag $e0 (param i32))

  (func
    try
    catch $e0
      rethrow 0
    end
  )
)
(;; STDOUT ;;;
(module
  (type (;0;) (func (param i32)))
  (type (;1;) (func))
  (func (;0;) (type 1)
    try  ;; label = @1
    catch 0
      rethrow 0 (;@1;)
    end)
  (tag (;0;) (type 0) (param i32)))
;;; STDOUT ;;)