summaryrefslogtreecommitdiff
path: root/test/reg_switch.wast
blob: 3bae4683d4dabaa71d18f2005c01b5c5b3b5fa89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
  (type $0 (func))
  (memory $0 0)
  (func $0 (type $0)
    (if
      (i32.const 0)
      (block $A
        (br_table $A
          (i32.const 0)
        )
      )
    )
  )
)