blob: ddc947f7e2648e2a961d561c597463b2c34c24ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(module
(memory 1 1)
(func $foo
;; should not be modified because its the start function
(i32.store (i32.load (i32.const 1234)) (i32.const 5678))
)
(func $bar
(i32.store (i32.load (i32.const 1234)) (i32.const 5678))
)
(start $foo)
)
|