assemblyscript/tests/compiler/void.untouched.wat

32 lines
706 B
Plaintext
Raw Normal View History

(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))
(global $~lib/memory/HEAP_BASE i32 (i32.const 8))
(export "memory" (memory $0))
(export "table" (table $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)
)
)