summaryrefslogtreecommitdiff
path: root/test/lld/standalone-wasm-with-start.wat.out
blob: 472940690cf304aea0a7ffb1d464cc4352b6ef32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(module
 (type $0 (func (result i32)))
 (global $global$0 (mut i32) (i32.const 66112))
 (global $global$1 i32 (i32.const 66112))
 (global $global$2 i32 (i32.const 576))
 (memory $0 2)
 (table $0 1 1 funcref)
 (elem $0 (i32.const 0) $foo)
 (export "memory" (memory $0))
 (export "_start" (func $_start))
 (export "__heap_base" (global $global$1))
 (export "__data_end" (global $global$2))
 (func $_start (result i32)
  (i32.const 0)
 )
 (func $foo (result i32)
  (i32.const 0)
 )
)