summaryrefslogtreecommitdiff
path: root/test/metadce/segments.wast.dced
blob: 944614bc2515dc3785a4c7264e978d87abfe2d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(module
 (type $i32_=>_none (func (param i32)))
 (import "env" "g1" (global $g1 i32))
 (import "env" "g2" (global $g2 i32))
 (memory $0 3)
 (data $0 (global.get $g2) "xxx")
 (table $tbl 0 funcref)
 (elem $0 (global.get $g1) $f)
 (export "f" (func $f))
 (func $f (type $i32_=>_none) (param $0 i32)
  (call_indirect $tbl (type $i32_=>_none)
   (local.get $0)
   (i32.load8_u
    (i32.const 0)
   )
  )
 )
)