blob: c29507c8e26b1759d1bec72d8328765aeda94224 [file] [log] [blame] [edit]
(module
(type $none_=>_i32 (func (result i32)))
(global $g1 (mut i32) (i32.const 50))
(global $g2 (mut i32) (i32.const 40))
(export "keepalive" (func $keepalive))
(func $keepalive (type $none_=>_i32) (result i32)
(i32.add
(global.get $g1)
(global.get $g2)
)
)
)