assemblyscript/tests/compiler/ternary.optimized.wat

19 lines
348 B
Plaintext
Raw Permalink Normal View History

2017-12-04 16:26:34 +01:00
(module
(type $FUNCSIG$v (func))
(memory $0 0)
(global $ternary/a (mut i32) (i32.const 0))
2017-12-04 16:26:34 +01:00
(export "memory" (memory $0))
(start $start)
(func $start (; 0 ;) (type $FUNCSIG$v)
i32.const 1
global.set $ternary/a
i32.const 1
global.set $ternary/a
i32.const 1
global.set $ternary/a
2017-12-04 16:26:34 +01:00
)
(func $null (; 1 ;) (type $FUNCSIG$v)
nop
)
2017-12-04 16:26:34 +01:00
)