assemblyscript/tests/compiler/void.untouched.wat
2019-04-06 20:17:48 +02:00

30 lines
626 B
Plaintext

(module
(type $FUNCSIG$i (func (result i32)))
(type $FUNCSIG$v (func))
(memory $0 0)
(table $0 1 funcref)
(elem (i32.const 0) $null)
(global $void/u8Val1 (mut i32) (i32.const 1))
(global $void/u8Val2 (mut i32) (i32.const 255))
(export "memory" (memory $0))
(start $start)
(func $void/anInt (; 0 ;) (type $FUNCSIG$i) (result i32)
i32.const 2
)
(func $start:void (; 1 ;) (type $FUNCSIG$v)
i32.const 1
drop
call $void/anInt
drop
global.get $void/u8Val1
global.get $void/u8Val2
i32.add
drop
)
(func $start (; 2 ;) (type $FUNCSIG$v)
call $start:void
)
(func $null (; 3 ;) (type $FUNCSIG$v)
)
)