blob: 78722b0d0c74ba848c7535ccf93cf8965e55e4e2 [file] [log] [blame] [edit]
(module
(memory 16777216 16777216)
(export "add" $add)
(func $add (param $x i32) (param $y i32) (result i32)
(return
(i32.add
(get_local $x)
(get_local $y)
)
)
)
)