assemblyscript/tests/compiler/inlining-recursive.optimized.wat

24 lines
664 B
Plaintext
Raw Normal View History

(module
(type $v (func))
(memory $0 0)
(table 1 anyfunc)
(elem (i32.const 0) $null)
(export "memory" (memory $0))
(export "table" (table $0))
(export "foo" (func $inlining-recursive/foo))
(export "bar" (func $inlining-recursive/bar))
(export "baz" (func $inlining-recursive/baz))
2018-08-02 18:23:02 +02:00
(func $inlining-recursive/foo (; 0 ;) (; has Stack IR ;) (type $v)
(call $inlining-recursive/foo)
)
2018-08-02 18:23:02 +02:00
(func $inlining-recursive/baz (; 1 ;) (; has Stack IR ;) (type $v)
(call $inlining-recursive/bar)
)
2018-08-02 18:23:02 +02:00
(func $inlining-recursive/bar (; 2 ;) (; has Stack IR ;) (type $v)
(call $inlining-recursive/baz)
)
(func $null (; 3 ;) (; has Stack IR ;) (type $v)
(nop)
)
)