summaryrefslogtreecommitdiff
path: root/test/mutable-global.wasm.fromBinary
blob: 159fc7a5dafd657ee5e059043f7ffebd74c93782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(module
 (type $none_=>_none (func))
 (import "env" "global-mut" (global $gimport$0 (mut i32)))
 (func $0 (; 0 ;)
  (global.set $gimport$0
   (i32.add
    (global.get $gimport$0)
    (i32.const 1)
   )
  )
 )
)