blob: 6cb7fbf10a71e7f7b66e4ec4c1ad3dc9d33f5f1e [file] [log] [blame]
(module
(import "env" "memory" (memory $0 1))
(table 0 anyfunc)
(export "main" (func $main))
(export "_start" (func $_start))
(start $_start)
(func $main (param $0 i32) (param $1 i32) (result i32)
(return
(get_local $0)
)
)
(func $_start
(local $0 i32)
(local $1 i32)
(drop
(call $main
(get_local $0)
(get_local $1)
)
)
)
)
;; METADATA: { "asmConsts": {},"staticBump": 12, "initializers": [] }