Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen.git
/
refs/heads/packed
/
.
/
test
/
passes
/
safe-heap_start-function.wast
blob: ddc947f7e2648e2a961d561c597463b2c34c24ad [
file
] [
log
] [
blame
] [
edit
]
(
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
)
)