summaryrefslogtreecommitdiff
path: root/test/hello_world.fromasm.imprecise
blob: 6bfc4bf68d187bc032e73feaf768a71e0ab4ec9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(module
  (memory 256 256)
  (import "env" "memory" (memory $memory))
  (import "env" "table" (table $table))
  (import "env" "memoryBase" (global $memoryBase i32))
  (import "env" "tableBase" (global $tableBase i32))
  (export "add" (func $add))
  (func $add (param $0 i32) (param $1 i32) (result i32)
    (i32.add
      (get_local $0)
      (get_local $1)
    )
  )
)