summaryrefslogtreecommitdiff
path: root/test/passes/vacuum_remove-unused-names_merge-blocks.txt
blob: 649d5ac39ee5047ff2ffffa811cf7447e07d1ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
(module
 (type $0 (func (param i32) (result i32)))
 (func $return-block (param $x i32) (result i32)
  (local.set $x
   (local.get $x)
  )
  (return
   (local.get $x)
  )
 )
)