summaryrefslogtreecommitdiff
path: root/test/mutable-global.wast.fromBinary.noDebugInfo
blob: 08d3b6c215fd9de5c61bd538e6cc516da2d84a9d (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
  (global.set $gimport$0
   (i32.add
    (global.get $gimport$0)
    (i32.const 1)
   )
  )
 )
)