summaryrefslogtreecommitdiff
path: root/test/wasm2js/empty_loop.wast
blob: 8f22c033d08a2cf8b40716b3c5564f7914ab7fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(module
 (global $g (mut i32) (i32.const 0))

 (func $test (export "test")
  ;; Loops without labels. We should not emit anything invalid here (like a
  ;; null name, which would end up identical between the two, which is wrong).
  (loop
   (loop
    ;; Some content, so the loop is not trivial.
    (global.set $g
     (i32.const 0)
    )
    (unreachable)
   )
   (unreachable)
  )
 )
)