summaryrefslogtreecommitdiff
path: root/test/if_else.wast
blob: 70251a46951cedc74212125edd878d0dacce103a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(module
  (memory 16777216 16777216)
  (func $ifs
    (block
      (if
        (i32.const 0)
        (i32.const 1)
      )
      (if_else
        (i32.const 0)
        (i32.const 1)
        (i32.const 2)
      )
      (if_else
        (i32.const 4)
        (i32.const 5)
        (i32.const 6)
      )
    )
  )
)