summaryrefslogtreecommitdiff
path: root/test/mutable-global.wast.from-wast
blob: f12fb3fa4275a713869b4a884a1cb28d78284ff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(module
 (type $0 (func))
 (import "env" "global-mut" (global $global-mut (mut i32)))
 (func $foo (; 0 ;) (type $0)
  (set_global $global-mut
   (i32.add
    (get_global $global-mut)
    (i32.const 1)
   )
  )
 )
)