mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-23 03:31:44 +00:00
Initial GC integration (#196)
This commit is contained in:
@ -12,16 +12,16 @@
|
||||
(export "exportedExported" (func $abi/exportedExported))
|
||||
(export "exportedInternal" (func $abi/exportedInternal))
|
||||
(start $start)
|
||||
(func $abi/exported (; 1 ;) (type $i) (result i32)
|
||||
(func $abi/exported (; 1 ;) (; has Stack IR ;) (type $i) (result i32)
|
||||
(i32.const -128)
|
||||
)
|
||||
(func $abi/exportedExported (; 2 ;) (type $i) (result i32)
|
||||
(func $abi/exportedExported (; 2 ;) (; has Stack IR ;) (type $i) (result i32)
|
||||
(call $abi/exported)
|
||||
)
|
||||
(func $abi/internal (; 3 ;) (type $i) (result i32)
|
||||
(func $abi/internal (; 3 ;) (; has Stack IR ;) (type $i) (result i32)
|
||||
(i32.const 128)
|
||||
)
|
||||
(func $abi/exportedInternal (; 4 ;) (type $i) (result i32)
|
||||
(func $abi/exportedInternal (; 4 ;) (; has Stack IR ;) (type $i) (result i32)
|
||||
(i32.shr_s
|
||||
(i32.shl
|
||||
(call $abi/internal)
|
||||
@ -30,7 +30,7 @@
|
||||
(i32.const 24)
|
||||
)
|
||||
)
|
||||
(func $start (; 5 ;) (type $v)
|
||||
(func $start (; 5 ;) (; has Stack IR ;) (type $v)
|
||||
(drop
|
||||
(call $abi/internal)
|
||||
)
|
||||
|
Reference in New Issue
Block a user