summaryrefslogtreecommitdiff
path: root/test/hello_world.fromasm.no-opts
blob: cfab7dcd1134139cc82892491d9c51d621ecf2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
 (import "env" "memory" (memory $memory 256 256))
 (import "env" "table" (table $table 0 0 anyfunc))
 (import "env" "__memory_base" (global $__memory_base i32))
 (import "env" "__table_base" (global $__table_base i32))
 (export "add" (func $add))
 (func $add (; 0 ;) (param $x i32) (param $y i32) (result i32)
  (return
   (i32.add
    (get_local $x)
    (get_local $y)
   )
  )
 )
)