blob: a67c7d04f70b624ab766226bd0c96f54a0f3960b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
(module
;; This tests if we can create dataflow graph correctly in the presence of
;; loops.
(func $if-loop-test (local $0 i32)
(if
(i32.const 0)
(then
(loop $label$0
(local.set $0
(i32.sub
(i32.const 0)
(i32.const 0)
)
)
)
)
)
)
)
|