blob: 62e09866ee644fa38a2291ca92e7c032838d4511 (
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
28
29
30
31
32
33
34
35
36
37
38
|
;;; TOOL: run-roundtrip
;;; ARGS: --stdout --enable-exceptions --debug-names
(module
(func (result i32)
try_table (result i32)
i32.const 6
end
drop
block
try_table (result i32) (catch_all 0)
nop
i32.const 7
br 2
end
drop
end
i32.const 8
)
)
(;; STDOUT ;;;
(module
(type (;0;) (func (result i32)))
(func (;0;) (type 0) (result i32)
try_table (result i32) ;; label = @1
i32.const 6
end
drop
block ;; label = @1
try_table (result i32) ;; label = @2
(catch_all 0 (;@1;))
nop
i32.const 7
br 2 (;@0;)
end
drop
end
i32.const 8))
;;; STDOUT ;;)
|